From 2bf342a13059de0d67fc66116b5a3c15e196b919 Mon Sep 17 00:00:00 2001 From: emccann Date: Thu, 15 Jan 2026 14:51:50 +0000 Subject: [PATCH] Add AllAudioTracksJob --- detection/api/mpf_component_api/mpf_component_api.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/detection/api/mpf_component_api/mpf_component_api.py b/detection/api/mpf_component_api/mpf_component_api.py index 162375a..08ca12e 100644 --- a/detection/api/mpf_component_api/mpf_component_api.py +++ b/detection/api/mpf_component_api/mpf_component_api.py @@ -100,6 +100,14 @@ class AudioJob(NamedTuple): media_properties: Mapping[str, str] feed_forward_track: Optional[AudioTrack] = None +class AllAudioTracksJob(NamedTuple): + job_name: str + data_uri: str + start_time: int + stop_time: int + job_properties: Mapping[str, str] + media_properties: Mapping[str, str] + feed_forward_tracks: List[AudioTrack] class GenericJob(NamedTuple): job_name: str