fnp
/
audio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
48a6d54
)
Copy streams when muxing.
author
Radek Czajka
<rczajka@rczajka.pl>
Fri, 22 May 2020 10:05:24 +0000
(12:05 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Fri, 22 May 2020 10:05:24 +0000
(12:05 +0200)
src/youtube/utils.py
patch
|
blob
|
history
diff --git
a/src/youtube/utils.py
b/src/youtube/utils.py
index
42ebc91
..
3dbab09
100644
(file)
--- a/
src/youtube/utils.py
+++ b/
src/youtube/utils.py
@@
-101,6
+101,7
@@
def mux(channels, output_path=None):
args = ['ffmpeg', '-y']
for c in channels:
args.extend(['-i', c])
+ args.extend(['-c', 'copy'])
return process_to_file(args, 'mux-', '.mkv', output_path=output_path)