FFMPEG Command Line |
![]() ![]() |
FFMPEG Command Line |
Apr 28 2013, 21:27
Post
#1
|
|
|
Group: Members Posts: 3 Joined: 26-April 13 From: Staten Island, N Member No.: 107842 |
I am trying to write a batch file to normalize the audio portion of some AVI files. I'm more or less finished, but am have a little difficulty with a couple of the specifics.
I am using this command line to create a temporary audio file: ffmpeg -i filename.avi -vn -acodec copy -y tempaudio.mp3 I am looking to have the file have a specific Bitrate (128 Kbps) and Sample Rate (48000 Hz). What adjustments would I have to make to the above to achieve this? Thanks in advance, John |
|
|
|
Apr 28 2013, 21:43
Post
#2
|
|
![]() Group: Members (Donating) Posts: 762 Joined: 12-March 05 From: Kiel, Germany Member No.: 20561 |
You need to reencode the audio stream. Try:
CODE ffmpeg -i filename.avi -vn -sn -acodec libmp3lame -ab 128k -ar 48k -y tempaudio.mp3
-------------------- Audiophiles live in constant fear of jitter.
|
|
|
|
Apr 29 2013, 07:51
Post
#3
|
|
|
Group: Members Posts: 3 Joined: 26-April 13 From: Staten Island, N Member No.: 107842 |
That did it. Thanks.
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 20th May 2013 - 20:43 |