mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
Fix default audio parameters (#306)
This commit is contained in:
parent
8dd9a07f95
commit
25f2eba75e
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ pub fn main() {
|
||||||
audio_params: if let Some(params) = args.audio_params {
|
audio_params: if let Some(params) = args.audio_params {
|
||||||
shlex::split(¶ms).unwrap_or_else(|| Vec::new())
|
shlex::split(¶ms).unwrap_or_else(|| Vec::new())
|
||||||
} else {
|
} else {
|
||||||
Vec::new()
|
vec!["-c:a".into(), "copy".into()]
|
||||||
},
|
},
|
||||||
ffmpeg_pipe: Vec::new(),
|
ffmpeg_pipe: Vec::new(),
|
||||||
chunk_method: args
|
chunk_method: args
|
||||||
|
|
Loading…
Reference in a new issue