diff options
Diffstat (limited to 'example-scripts/ffmpeg/record-all-audio-streams.py')
-rwxr-xr-x | example-scripts/ffmpeg/record-all-audio-streams.py | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/example-scripts/ffmpeg/record-all-audio-streams.py b/example-scripts/ffmpeg/record-all-audio-streams.py index 29cfd6b..f2ce526 100755 --- a/example-scripts/ffmpeg/record-all-audio-streams.py +++ b/example-scripts/ffmpeg/record-all-audio-streams.py @@ -52,8 +52,22 @@ try: except: output = 'output.ts' + +# example call: +# ------------- +# ffmpeg +# -hide_banner +# -y -nostdin +# -i tcp://localhost:13000 -i tcp://localhost:13001 -i tcp://localhost:13002 +# -ac 2 -channel_layout stereo +# -map 0:a -metadata:s:a:0 language=und -map 1:a -metadata:s:a:1 language=und -map 2:a -metadata:s:a:2 language=und +# -c:a mp2 -b:a 192k -ac:a 2 -ar:a 48000 +# -flags +global_header -flags +ilme+ildct +# -f mpegts +# -vv + cmd = """ -ffmpeg \ +ffmpeg -hide_banner -y -nostdin {} |