Re: [FFmpeg-user] How to enforce VBR minimum bitrate

2018-06-04 Thread Zak
On 2018-06-04 at 1:40 PM EDT, Carl Eugen Hoyos wrote: > 2018-06-04 16:59 GMT+02:00, DopeLabs : > you can combine steps 1 and 2 into a single command: $ ffmpeg- i input -options -f wav - | lame -V 5 -F -b 128 - output.mp3 wav is a format that cannot easily be piped. It may work in many

Re: [FFmpeg-user] How to enforce VBR minimum bitrate

2018-06-04 Thread Carl Eugen Hoyos
2018-06-04 16:59 GMT+02:00, DopeLabs : > you can combine steps 1 and 2 into a single command: > > $ ffmpeg- i input -options -f wav - | lame -V 5 -F -b 128 - output.mp3 wav is a format that cannot easily be piped. It may work in many cases, but generally you cannot pipe a valid file. Please

Re: [FFmpeg-user] How to enforce VBR minimum bitrate

2018-06-04 Thread DopeLabs
you can combine steps 1 and 2 into a single command: $ ffmpeg- i input -options -f wav - | lame -V 5 -F -b 128 - output.mp3 > On Jun 4, 2018, at 7:52 42AM, Zak wrote: > > On 2018-06-04 at 3:03 AM EDT, sook...@expressinmusic.com wrote: > >> Hi experts! >> >> I am currently using ffmpeg as a

Re: [FFmpeg-user] How to enforce VBR minimum bitrate

2018-06-04 Thread Zak
On 2018-06-04 at 3:03 AM EDT, sook...@expressinmusic.com wrote: Hi experts! I am currently using ffmpeg as a solution to audio file conversion and normalization. I understand that my setting (-q:a 5) below should produce output with bitrate range in between 120-150kbps, or sometimes even

[FFmpeg-user] How to enforce VBR minimum bitrate

2018-06-04 Thread sooksin
Hi experts! I am currently using ffmpeg as a solution to audio file conversion and normalization. I understand that my setting (-q:a 5) below should produce output with bitrate range in between 120-150kbps, or sometimes even lower than that if the input already in being a lower bitrate