I am trying to adapt this FFmpeg script that encodes all video files in a directory, to instead convert mp3 files present in that directory with similar preferences.
The original script:
This works for .MOV -> .MOV encoding.
cd /Convert; for i in *.MOV; do ffmpeg -i "$i" -c:v libx265 -preset veryslow -crf 23 -af "volume=25dB, highpass=f=180, lowpass=f=15000, equalizer=f=50:width_type=h:width=100:g=-15" -c:a aac -strict experimental -b:a 192k "${i%.MOV}-ENCODED.MOV"; done
Adapted for mp3 re-encoding:
cd /Convert; for i in *.mp3; do ffmpeg -i "$i" -af "volume=25dB, highpass=f=180, lowpass=f=15000, equalizer=f=50:width_type=h:width=100:g=-15" -c:a aac -strict experimental -b:a 192k "${i%.mp3}-ENCODED.mp3"; done
Throws errors:
Invalid audio stream. Exactly one MP3 audio stream is required.
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument.
What is wrong with the script?
- ffmpeg
Share
Improve this question
Follow
edited Mar 19, 2016 at 11:23
asked Mar 16, 2016 at 18:04
P A N
1,61366 gold badges1515 silver badges2222 bronze badges
Add a comment
1 Answer
Sorted by:
Highest score (default) Date modified (newest first) Date created (oldest first)
You're trying to store an AAC stream in a MP3 container, would be my guess.
Either store the result as "${i%.mp3}-ENCODED.aac"
or switch -c:a aac
to -c:a libmp3lame
Share
Improve this answer
Follow
answered Mar 16, 2016 at 18:32
Gyan
31.8k22 gold badges5555 silver badges8888 bronze badges文章来源:https://www.toymoban.com/news/detail-498913.html
- Thanks! Funny, I always thought the mp3 format could contain aac. Looks like that presumtion was completely wrong!
– P A N文章来源地址https://www.toymoban.com/news/detail-498913.html
Mar 16, 2016 at 18:35
到了这里,关于FFMpeg: “Invalid audio stream. Exactly one MP3 audio stream is required“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!