Skip to content

Commit

Permalink
allow wallclock flag in FFMPEG_FLAGS #388
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlt8 committed Oct 10, 2023
1 parent 850ea23 commit 35dc2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/wyzebridge/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_ffmpeg_cmd(
+ (["-map", "1:a", "-c:a", audio_out] if audio_in else [])
+ (a_options if audio and audio_out != "copy" else [])
+ ["-fps_mode", "drop", "-async", "1", "-flush_packets", "1"]
+ ["-muxdelay", "0", "-copytb", "1"]
+ ["-muxdelay", "0"]
+ ["-rtbufsize", "1", "-max_interleave_delta", "10"]
+ ["-f", "tee"]
+ [rtsp_ss + get_record_cmd(uri, audio_out, record) + livestream]
Expand Down

0 comments on commit 35dc2fc

Please sign in to comment.