ffmpeg.exe −i 1% −ab 384k xxx.mp3
what is the command option for a veriable bit rate, instead of a fixed one, to make a mp3?
something like this
ffmpeg.exe −i 1% −abvar 190k xxx.mp3 causes it to fuctuate around 190k
+ Reply to Thread
Results 1 to 6 of 6
-
-
ffmpeg.exe −i 1% -vn -c:a libmp3lame -q 2 xxx.mp3 worked as i wanted, thanks and https://trac.ffmpeg.org/wiki/Encode/MP3 thanks for this too.
i need to ask few things to remove some loose ends.
1. -qscale was found in video option in the document, but i suppose it would work for audio as well.
2. -qscale:a, can i interpret this as a quality control for audio ? since it came with :a
3. -codec option is not found in document, documemt only has -vcodec or -acodec
i found the option in https://ffmpeg.org/ffmpeg.html#Main-options
-c[tream_specifier] codec
-codec[tream_specifier] codec
4. why is -q:a 2 the same as -q 2?
5. -vn disable video, would this option encode it faster?Last edited by sommers; 6th Jun 2017 at 03:58.
-
Stop saying "in the document". We have no idea what document you are talking about.
2. Yes. http://ffmpeg.org/ffmpeg.html#Stream-specifiers
3. Already told you: -vcodec and -acodec are deprecated. They mean(t) the same as -c:v/-codec:v and -coded:a
4. see 2.
5. No. If you specifiy "xxx.mp3" output file ffmpeg already knows you don't want video because mp3 is implicitly audio-only. If you specify an output format that can hold video (e.g. "xxx.mkv") then it will make a difference.
Similar Threads
-
Bit Depth,Sampling Rate used for Uncompressed Audio-Bit Rate for Compressed
By alexander121 in forum AudioReplies: 9Last Post: 4th Apr 2015, 10:30 -
Frame rate changes; Playing videos on a fixed 60Hz monitor?
By pearlblack15 in forum Newbie / General discussionsReplies: 11Last Post: 25th Feb 2013, 08:09 -
mp4 bit rate
By tblake in forum Newbie / General discussionsReplies: 1Last Post: 24th Nov 2012, 23:40 -
Overall Bit Rate, Bit Rate with Respect to Quality and Filesize
By kingaddi in forum DVD RippingReplies: 113Last Post: 17th Sep 2012, 21:56 -
What should slide show bit rate and frame rate be in video editor?
By johnharlin in forum Video ConversionReplies: 0Last Post: 11th Sep 2012, 21:00