diff options
author | Florian Zeitz <florob@babelmonkeys.de> | 2017-01-31 22:56:00 +0100 |
---|---|---|
committer | Florian Zeitz <florob@babelmonkeys.de> | 2017-01-31 22:56:00 +0100 |
commit | b66d7b2d653f65a318d67b413d8680123bf14b25 (patch) | |
tree | 43809104c5fed1eb4ac041991dd1d47aa9f37f38 /example-scripts | |
parent | 5516fdee86fe0ffcd34381985ebe798f9fbda1af (diff) |
Minor PEP8 fixes
Diffstat (limited to 'example-scripts')
-rwxr-xr-x | example-scripts/ffmpeg/record-all-audio-streams.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/example-scripts/ffmpeg/record-all-audio-streams.py b/example-scripts/ffmpeg/record-all-audio-streams.py index f2ce526..c30f735 100755 --- a/example-scripts/ffmpeg/record-all-audio-streams.py +++ b/example-scripts/ffmpeg/record-all-audio-streams.py @@ -58,9 +58,13 @@ except: # ffmpeg # -hide_banner # -y -nostdin -# -i tcp://localhost:13000 -i tcp://localhost:13001 -i tcp://localhost:13002 +# -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 +# -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 |