Jiří Navrátil
2010-Sep-19 19:50 UTC
[theora] normalization of audio when using ffmpeg2theora?
Hello, We created some amateurish videos during Software Freedom Day. I like to publish them, but some are too quiet. How I can normalize the audio, when using ffmpeg2theora? Are you using some scripts to split audio and video and combine them back or what is the "automated way", how to achieve that? Enhancement of video will be useful too, but audio is critical. Thank you, Jiri -- Jiri Navratil, http://www.navratil.cz, +420 777 224 245 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora/attachments/20100919/be48b916/attachment.htm
j at v2v.cc
2010-Sep-19 20:33 UTC
[theora] normalization of audio when using ffmpeg2theora?
> We created some amateurish videos during Software Freedom Day. I like to > publish them, but some are too quiet. How I can normalize the audio, > when using ffmpeg2theora? Are you using some scripts to split audio and > video and combine them back or what is the "automated way", how to > achieve that? Enhancement of video will be useful too, but audio is > critical.Hi, you have to split audio into an extra file, with that you could use normalize-audio to adjust sound, something like this: ffmpeg -i $input $input.wav normalize-audio $input.wav ffmpeg -i $input -i $input.wav -map 0.0:0.0 \ -map 1.0:0.1 \ -vcodec copy -acodec copy \ $input.normalized-audio.mkv ffmpeg2theora $input.normalize-audio.mkv ffmpeg2theora itself does not have any audio postprocessing, there are some options for video check --pp help j
Jiří Navrátil
2010-Sep-19 21:02 UTC
[theora] normalization of audio when using ffmpeg2theora?
Hi, Thank you for quick and helpful response. Regarding video checks, I will try --pp autolevels (as only option I understand the indention :) Thx again, Jiri -- Jiri Navratil, http://www.navratil.cz, +420 777 224 245 On 19.9.2010, at 22:33, j at v2v.cc wrote:> Hi, > you have to split audio into an extra file, with that you could use > normalize-audio to adjust sound, something like this: > > ffmpeg -i $input $input.wav > normalize-audio $input.wav > ffmpeg -i $input -i $input.wav -map 0.0:0.0 \ > -map 1.0:0.1 \ > -vcodec copy -acodec copy \ > $input.normalized-audio.mkv > ffmpeg2theora $input.normalize-audio.mkv > > ffmpeg2theora itself does not have any audio postprocessing, there are > some options for video check --pp help > > j > _______________________________