Hi all i have a avi movie, but the sound is very low, what programs will i need to extract the sound enhance it louder then replace back to the avi
+ Reply to Thread
Results 1 to 17 of 17
-
-
-
Last edited by loa909; 12th Apr 2016 at 05:38.
-
You can usually just drag the video file into an audio editor(I use GoldWave myself but Audacity should do the same) and it will open the audio. Increase the volume and save out the audio to a new WAV file.
Then I open the original video file in AviDemux (I still use an OLD version 2.4) and replace the old audio with the new audio. You can use the COPY option for the video and it will not change the video properties at all. You will have a WAV file to replace the old audio so you will probably want to allow AviDemux to recompress the audio to MP3......or you can make it AC3 again....no biggie.
https://youtu.be/yfExLuAvk10 -
Download ffmpeg , unpack archive to folder, find ffmpeg.exe.
Code:@ffmpeg -i %1 -c:v copy -c:a ac3 -b:a 192k -af "aformat=sample_fmts=fltp,highpass=f=5,dynaudnorm=m=100.0:f=500:p=0.5:b=0:s=5.0,aresample=resampler=soxr:osr=48000:dither_method=0" "%~n1_dyn.avi"
Drag and drop your avi file on icon of above script (named as you like and extension bat or cmd)
After some time new avi will be created - check if everything is fine with audio.
Provide feedback.Last edited by pandy; 12th Apr 2016 at 06:34.
-
ok thanks seems easy enough to do hopefully. dont suppose you have a copy of your AviDemux or will this copy be ok still as dont want to mess up movie etc.
so in either gold wave or audacity i just increase the volume on it to a nice level and save as wav yeah -
Audacity is free....I use Goldwave because it's easier for me to understand. I had a Roxio program years ago that resembled Goldwave a lot.
All of the versions of AviDemux work the same. COPY is COPY on all of them. They have removed some filters over the years but you won't be using those so it doesn't matter. You may want to get the same version as shown in the YouTube video to make sure there is no confusion. That one does NOT look like mine.
Don't forget that you will choose AVI as an output....not MP4 as shown in the video.....AND you may need to add .avi to your new file's name. My version of AviDemux does not place the file type automatically. -
Hi I have done as you said, it seems to be sorting the audio but its now renamed movie to >>>> moviename_dyn.avi is this correct
so do I rename movie back after its finished
wow its soon increased the audio real fast much louder now thanks so much. so is this program only for avi movies or can it be used on other formats -
Hi I have done as you said, it seems to be sorting the audio but its now renamed movie to >>>> moviename_dyn.avi is this correct
so do I rename movie back after its finished
wow its soon increased the audio real fast much louder now thanks so much. so is this program only for avi movies or can it be used on other formats
hech54
Re: low sound help
You can usually just drag the video file into an audio editor(I use GoldWave myself but Audacity should do the same) and it will open the audio. Increase the volume and save out the audio to a new WAV file.
Then I open the original video file in AviDemux (I still use an OLD version 2.4) and replace the old audio with the new audio. You can use the COPY option for the video and it will not change the video properties at all. You will have a WAV file to replace the old audio so you will probably want to allow AviDemux to recompress the audio to MP3......or you can make it AC3 again....no biggie.
https://youtu.be/yfExLuAvk10
I will also try your method too hech54 many thanks also -
yes, this is intentionally - you will be able to distinguish between those two and decide if results are OK for you or not.
As a principle it may work for all movies but due some subtle nuance in ffmpeg syntax + container capabilities it may give you suboptimal results or not work at all - some small modification may be required for example it may not work with h.264 files, it may not work with video compression not supported by avi etc.
If you find something that not work as you like or maybe there is some other problem just start new thread - for sure someone should help you.
for example this one will follow container type so it allow you to keep same container as source, as video is copied then only audio is modified and it use ac3 compression.
Code:@ffmpeg -i %1 -c:v copy -c:a ac3 -b:a 192k -af "aformat=sample_fmts=fltp,highpass=f=5,dynaudnorm=m=100.0:f=500:p=0.5:b=0:s=5.0,aresample=resampler=soxr:osr=48000:dither_method=0" "%~n1_dyn%~x1"
-
is there more examples then like above, where did you find those scripts
-
https://www.ffmpeg.org/documentation.html
http://trac.ffmpeg.org/
lot of problems are common and usually they are already solved - if not then you need to dig a bit and made some tests...
and i have small library of my own problems already solved - it was easy to modify one of my own script to your needs. -
-
There's some batch files here: https://forum.videohelp.com/threads/255147-Mini-Guide-Normalizing-Audio-for-Multiple-AVI-files
-
Similar Threads
-
Why do some commercial DVDs/Blurays have poor/low sound?
By technicality1 in forum Newbie / General discussionsReplies: 6Last Post: 8th Apr 2016, 05:53 -
Very low sound upon playing 1080p movies
By vsharsha1989 in forum Newbie / General discussionsReplies: 4Last Post: 11th Sep 2013, 21:06 -
Cap high then encode low or cap low first from hd source?
By yoda313 in forum Capturing and VCRReplies: 5Last Post: 21st Aug 2013, 19:48 -
volume low
By natty in forum Newbie / General discussionsReplies: 12Last Post: 14th Jun 2013, 12:18 -
Solved- low cost way to solve sound card problems
By jimdagys in forum ComputerReplies: 1Last Post: 25th May 2013, 11:01