mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Fix audio encoding
Without this argument the resulting video file will have a longer duration than normal and will present noticeable audio pops every 3-7 seconds, it may be needed to apply this to the archive command as well
This commit is contained in:
parent
99002e606f
commit
98ccc0b3e9
1 changed files with 1 additions and 0 deletions
|
|
@ -243,6 +243,7 @@ async fn download_ffmpeg(
|
|||
.args(["-f", "mpegts", "-i", "pipe:"])
|
||||
.args(["-safe", "0"])
|
||||
.args(["-c", "copy"])
|
||||
.args(["-bsf:a", "aac_adtstoasc"])
|
||||
.arg(target.to_str().unwrap())
|
||||
.spawn()?;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue