May be too easy, but I don't know![]()
I want to input an AAC file and re-encode it into another AAC or M4A.
I can do it by using M4A file, but not AAC.
qaac input.m4a -V73 -o out.m4a
this works
qaac input.aac -V73 -o out.m4a
this not.. something missing. can someone put here the working code?
![]()
+ Reply to Thread
Results 1 to 7 of 7
-
-
This is the code i use for encoding to aac/m4a below you can see i've added qaac and neroaac this should help you out
QAAC
ffmpeg -i my-music-file-input.aac -vn -ac 2 -ar 48000 -f wav - | qaac - --threading --normalize --vbr 192 -o my-music-file-output.m4aNERO AAC
ffmpeg -i my-music-file-input.aac -vn -ac 2 -ar 48000 -f wav - | neroaac -ignorelength -lc -br 192000 -if - -of my-music-file-output.m4a -
Thanks.
But can't it be done without using FFMPEG and making a Wav?
I have no knowledge about stdin and stdout.
Can't we use --adts switch with stdin and stdout to do that?
https://github.com/nu774/qaac/wiki/Command-Line-Options
What they say there abt --adts, AAC input or output? -
-
In 2.55, AAC input tested, worked.
If it fails for you, you can follow stdin wav input method suggested by NiGHT-WiNG with the help of ffmpeg,
or since M4A worked for you, you can quickly mux AAC into M4A and use it. mp4box can be used.
Code:mp4box -add input.aac#audio input.m4a qaac input.m4a -V 73 -o out.m4a
Example, here ffmpeg can be used.
Code:ffmpeg -i input.mkv -vn -acodec copy input.m4a qaac input.m4a -V 73 -o out.m4a
But try to fix ur issue with AAC input.
Similar Threads
-
25fps AAC to 23.976fps AAC (slowdown)
By pub in forum AudioReplies: 7Last Post: 22nd Mar 2015, 09:03 -
[AAC] AAC (avcodec), AAC (FDK) or HE-AAC (FDK)
By yopmail in forum AudioReplies: 10Last Post: 3rd Feb 2015, 21:17 -
Whats the difference between AAC (avcodec) and AAC Passthru in Handbrake?
By Nazomon in forum Newbie / General discussionsReplies: 1Last Post: 13th Dec 2014, 16:49 -
Which audio setting should I selected in XMedia? AAC or AAC (Faac)
By Greg2041 in forum AudioReplies: 3Last Post: 1st May 2013, 07:17 -
MKV AAC GUI Converter with Nero AAC Codec
By prijatelj.v in forum AudioReplies: 4Last Post: 26th Mar 2012, 08:41