Skip to content

Commit ee1ca91

Browse files
author
zxxz1000
committed
Integrate media ingest with memory pipeline
1 parent 6100d1f commit ee1ca91

20 files changed

Lines changed: 1816 additions & 139 deletions

modules/media_graph_compiler/application/compile_audio.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ def compile_audio(
163163
utterances=utterances,
164164
evidence=audio_evidence,
165165
trace=trace,
166+
source_recorded_at=request.source.recorded_at,
166167
)
167168
stage_timings_ms["graph_compile_ms"] = round((perf_counter() - started_at) * 1000.0, 3)
168169
status = "compiled"

modules/media_graph_compiler/application/compile_video.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ def compile_video(
242242
utterances=utterances,
243243
evidence=evidence,
244244
trace=trace,
245+
source_recorded_at=request.source.recorded_at,
245246
)
246247
stage_timings_ms["graph_compile_ms"] = round((perf_counter() - started_at) * 1000.0, 3)
247248
status = "compiled"

0 commit comments

Comments
 (0)