fix audio doesn't copying

This commit is contained in:
Zen 2021-06-01 16:34:08 +03:00
parent 527aa05d82
commit c14e6c015a

View file

@ -213,7 +213,7 @@ pub fn concatenate_ffmpeg(temp: &Path, output: &Path, encoder: Encoder) {
&concat_file,
])
.args(audio_cmd)
.args(["-c", "copy", "-sn", "-map", "0", output.to_str().unwrap()]),
.args(["-c", "copy", output.to_str().unwrap()]),
};
let out = cmd.output().unwrap();