Re: [FFmpeg-user] VBR encoding not supported ???

2024-05-10 Thread Aditya Dandavate
On Wed, 8 May, 2024, 2:31 pm Moritz Barsnick via ffmpeg-user, < ffmpeg-user@ffmpeg.org> wrote: > On Wed, May 08, 2024 at 12:09:52 +0530, Aditya Dandavate wrote: > > As I use FFMPEG mostly for creating videos that are uploaded to Youtube, > is > > it fine to use VP8/Opus in a .webm container ? > >

Re: [FFmpeg-user] VBR encoding not supported ???

2024-05-08 Thread Moritz Barsnick via ffmpeg-user
On Wed, May 08, 2024 at 12:09:52 +0530, Aditya Dandavate wrote: > As I use FFMPEG mostly for creating videos that are uploaded to Youtube, is > it fine to use VP8/Opus in a .webm container ? As far as I understand, YouTube does support those formats and codecs for uploads. Its recommendations are

Re: [FFmpeg-user] VBR encoding not supported ???

2024-05-08 Thread Aditya Dandavate
As I use FFMPEG mostly for creating videos that are uploaded to Youtube, is it fine to use VP8/Opus in a .webm container ? I don't use VP9 yet because encoding is pretty slow and taxing to my Intel Core i3-1005G1 processor. Also, Youtube does support VP8, right ? On Sun, 28 Apr, 2024, 9:55 pm

Re: [FFmpeg-user] VBR encoding not supported ???

2024-05-01 Thread Aditya Dandavate
Still using Opus (with libopus) encoder, tho. On Sun, 28 Apr, 2024, 9:55 pm Ferdi Scholten, wrote: > On 28-04-2024 12:44, Aditya Dandavate wrote: > > I was converting flac audio to aac_lc with libfdk_aac with VBR encoding. > > But I saw a message about VBR encoding. > > > > The command and

Re: [FFmpeg-user] VBR encoding not supported ???

2024-05-01 Thread Aditya Dandavate
Also, according to my latest tests, HE-AAC v2 also supports VBR encoding with `-vbr 5` as well. Also, till now, I used 96khz as sampling rate for vbr 5. I did many encodes with these settings, but it was all flawless! I guess, these bugs related to VBR and other things that you mentioned are all

Re: [FFmpeg-user] VBR encoding not supported ???

2024-04-29 Thread Moritz Barsnick via ffmpeg-user
On Mon, Apr 29, 2024 at 18:47:36 +0530, Aditya Dandavate wrote: > Also, according to `Guidelines for high-quality lossy audio encoding` > guide, is it true that only E-AC3 is "officially" supported in mp4 ? Does > this mean that all other audio codecs like Opus, AAC, mp3 are >

Re: [FFmpeg-user] VBR encoding not supported ???

2024-04-29 Thread Aditya Dandavate
Also, according to `Guidelines for high-quality lossy audio encoding` guide, is it true that only E-AC3 is "officially" supported in mp4 ? Does this mean that all other audio codecs like Opus, AAC, mp3 are illegally/unofficially supported by the container ? On Sun, 28 Apr, 2024, 9:55 pm Ferdi

Re: [FFmpeg-user] VBR encoding not supported ???

2024-04-28 Thread Aditya Dandavate
Thanks for the info. I'll use Opus from now on. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] VBR encoding not supported ???

2024-04-28 Thread Ferdi Scholten
On 28-04-2024 12:44, Aditya Dandavate wrote: I was converting flac audio to aac_lc with libfdk_aac with VBR encoding. But I saw a message about VBR encoding. The command and output of the command is as follows : Command : ffmpeg.exe -i input.flac -c:a libfdk_aac -afterburner 1 -frame_length

[FFmpeg-user] VBR encoding not supported ???

2024-04-28 Thread Aditya Dandavate
I was converting flac audio to aac_lc with libfdk_aac with VBR encoding. But I saw a message about VBR encoding. The command and output of the command is as follows : Command : ffmpeg.exe -i input.flac -c:a libfdk_aac -afterburner 1 -frame_length 1024 -cutoff 0 -vbr 5 -profile:a aac_low