Fix default audio parameters (#306)

This commit is contained in:
redzic 2021-07-18 19:49:01 -05:00 committed by GitHub
parent 8dd9a07f95
commit 25f2eba75e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ pub fn main() {
audio_params: if let Some(params) = args.audio_params {
shlex::split(&params).unwrap_or_else(|| Vec::new())
} else {
Vec::new()
vec!["-c:a".into(), "copy".into()]
},
ffmpeg_pipe: Vec::new(),
chunk_method: args