I want to leveling audio decibelios in some video. I had used "BS Fag" and I use "Xmedia Recode" now. But it's a pity. I need the final sound will be more normalized (like Camtasia: audio leveling).
There are two problems:
- Camtasia is not free
- you can't export the video without losing quality
some idea about this?
+ Reply to Thread
Results 1 to 11 of 11
-
-
Hi,
when you don't want touch video, so save audio track. For example in Avidemux (it has some option to gain audio) but best is just to save audio, and then for example normalize or what you want in Audacity. When you satisfied than mux track together for example in Mkvtoolnix.
There is also in PC players possibility using normalization audio. I am sure in Potplayer, but in others should be also.
Bernix -
With the FFMpeg library in Audacity you can import the video directly without the need for Avidemux.
[Attachment 43773 - Click to enlarge] -
great.
normalize or what you want in Audacity -
Hi,
try in effects leveler. You can choose from light to heavy, give it a chanceO.K. then play with db and light to heavy....
Heavier will work best for your purpose.
Bernix -
The logical way is to extract the soundtrack, put it into a video editor and apply a volume envelope, then you can raise or lower the volume at appropriate points to equalise it.
-
IMHO easiest and fastest way to normalize level (both peak and RMS) is https://www.ffmpeg.org/ffmpeg-filters.html#dynaudnorm
alternatively https://www.ffmpeg.org/ffmpeg-filters.html#loudnorm can be used. -
Discussion from today https://forum.videohelp.com/threads/385830-ffmpeg-audio-file - it may help you - generally instead using GUI you can delegate all work to script.
Script for lossless video copy and audio signal autoleveling with reencoding audio to most widely supported audio codec i.e. mp3 provided bellow, just drag & drop your files on script.
Code:@setlocal @rem audio quality factor - lower than 5 higher quality and higher bitrate, higher than 5 lower quality and lower bitrate. @set aq=5 @set aproc="pan=stereo|FL < FL+1.414FC+0.5BL+0.5SL+0.25LFE|FR < FR+1.414FC+0.5BR+0.5SR+0.25LFE,dynaudnorm=p=1/sqrt(2):m=100:s=20" @ffmpeg.exe -hide_banner -v 32 -stats -y -i "%1" -c:v copy -af %aproc% -c:a libmp3lame -q:a %aq% -f matroska "%~n1.mkv" @endlocal
Scrrip can be created as plain text file (you can use notepad as editor) - just copy above to empty editor and save as your batch with extension .bat or .cmd .Last edited by pandy; 27th Nov 2017 at 08:22.
-
-
Similar Threads
-
Program to Trim/Edit and convert big long videos.
By alexvid in forum Video ConversionReplies: 1Last Post: 25th May 2017, 22:49 -
Volume Leveling?
By Downgraded286 in forum Media Center PC / MediaCentersReplies: 1Last Post: 25th Mar 2017, 07:02 -
How to seamlessly edit many videos?
By maveric in forum EditingReplies: 20Last Post: 19th Sep 2016, 15:36 -
How to edit several videos at once
By Ferden in forum Newbie / General discussionsReplies: 15Last Post: 15th Sep 2014, 13:55 -
Program for editing videos with encrypted segments from videos from satelit
By calriks in forum EditingReplies: 1Last Post: 3rd Jul 2014, 21:33