I am trying to encode some of my MP3's to he-aac v2 to put into a video file, But since ffmpeg doesn't support that codec i've had to use fdkaac.
The problem is that it only supports wav as input format.
Is there anyway to convert an mp3 to he-aac v2 using fdkaac, or any other softwares? I know about handbrake but i need a standalone CLI.
Thanks in advance![]()
+ Reply to Thread
Results 1 to 3 of 3
-
-
Hi
Use FFmpeg to decompress the mp3 to wav, then pipe it to fdkaac.
Like this...
Code:ffmpeg -i file.mp3 -f wav - | fdkaac --ignorelength --profile 29 --bitrate 32k -o file.m4a -
(This "|" pipe symbol links the stdout output from FFmpeg to the stdin input of fdkaac.)Last edited by bat999; 23rd Mar 2016 at 14:52.
-
Similar Threads
-
How to get & install FDKAAC on FFMPEG?
By EdsonMarques in forum Newbie / General discussionsReplies: 1Last Post: 16th Jul 2015, 06:10