What freeware would allow me to increase the audio of a mp4, without re-encoding the video?
+ Reply to Thread
Results 1 to 13 of 13
-
-
-
In addition to Baldrick suggestion, you may try, ffmpeg -i foo.vid (no video) (only audio) -f wav - | sox normalize wav - | neroAacEnc -ignorelength -q 0.5 -if - -of foo2.m4a If you post mediainfo details, someone here will help you with proper command line. m4a (normalized) you can remux back with h264 into mp4.
-
-
This is kinda tricky but what I use.
Download and install MP3Gain. Download AACGain, rename AACGain.exe to mp3gain.exe and place in the MP3Gain folder. It will over write the mp3gain.exe file and allow you raise or lower the volume of mp3 or mp4 audio to the correct dB (89.0) or you can set it louder (up to 110 I believe) if you wish.
You could also use VideoGain which is listed in the link that Baldrick posted. -
@pinetop
I'm grateful for the help, but "-i foo, -i way" i have no idea what that means?
ffmpeg -i foo.vid (no video) (only audio) -f wav - | sox normalize wav - | neroAacEnc -ignorelength -q 0.5 -if - -of foo2.m4a
ffmpeg -i foo.vid (no video) (only audio) -f wav - | qaac -c 160 -q 100 --normalize -o "normalized.aac" -.
ffmpeg -i foo.vid (no video) (only audio) -f wav - | qaac -c 160 -q 100 --normalize -o "normalized.aac" -Last edited by enim; 16th Oct 2013 at 11:39.
-
here's an example for ffmpeg->sox->neroAacEnc
Code:ffmpeg -y -threads 8 -v -10 -i "path to input" -f sox - | sox --multi-threaded --ignore-length --buffer 524288 -S -t sox - -t wav - gain -n | neroAacEnc -q 0.7 -ignorelength -if - -of "path to output file"
Code:ffmpeg -y -threads 8 -v -10 -i "path to input" -f sox - | sox --multi-threaded --ignore-length --buffer 524288 -S -t sox - -b 16 -t raw - gain -n | qaac --no-delay --threading --raw-channels 2 --raw-rate 48000 --tvbr 75 --raw - -o "path to output file"
also https://forum.videohelp.com/threads/352067-normalizing-audio-volume-using-new-ffmpeg-options might be interesting to read.
and if your playback device supports gain flags, you could simply use MP3Gain (which also supports aac audio). -
@Selur
Normally I introduce delay of 2 frames @ 29.97 = 67ms approx. at the time of mp4 muxing.
Is it possible to introduce 67ms delay by --delay parameter in qaac at the time of encoding?
If so, how you correspond to 67ms to the total number of audio samples (sample. freq x sec ?)? -
Normally I introduce delay of 2 frames @ 29.97 = 67ms approx. at the time of mp4 muxing.
Is it possible to introduce 67ms delay by --delay parameter in qaac at the time of encoding?--delay <[[hh:]mm:]ss[.ss..]|ns>
Specify delay either by time or number of samples.
When positive value is given, prepend silence at the
begining to achieve delay of specified amount.
When negative value is given, specified length is
dropped from the beginning.
Example:
--delay -2112s : trim 2112 samples at beginning
--delay 1.234 : prepend 1.234 seconds silence
so, how you correspond to 67ms to the total number of audio samples (sample. freq x sec ?)?
(also about the subject: http://forum.doom9.org/showthread.php?t=156200 and http://forum.doom9.org/showthread.php?t=164363
Cu Selur -
@Selur
You owe me Weihenstephan!
I am sharpening a bit more!
But, still you did not disclose recipe or ingredients? Ha..Ha..
Thanks!
-
Thanks for the help. I used VideoGain, Its was very easy to use. And believe it didn't re-encode my file.
Similar Threads
-
mp3 audio increase
By natty in forum Newbie / General discussionsReplies: 3Last Post: 18th Aug 2013, 11:15 -
Increase volume of audio files
By shans in forum AudioReplies: 12Last Post: 22nd Jun 2012, 21:35 -
increase number of frames in exisitng MP4 file
By theewizard in forum Newbie / General discussionsReplies: 0Last Post: 13th May 2012, 23:40 -
How do you increase the audio of a DVD movie?
By johnharlin in forum Newbie / General discussionsReplies: 1Last Post: 28th Aug 2011, 01:05 -
Increase Audio Volume
By Soixante in forum Authoring (DVD)Replies: 3Last Post: 25th Sep 2010, 16:24