+ Reply to Thread
Results 1 to 13 of 13
-
https://forum.videohelp.com/threads/336915-How-to-create-7-1-channel-LPCM
Audacity can export AAC if you have Ffmpeg library installed.
Search the Help box for more. -
-
Thanks for your replys.
I need to integrate a converter into my own sofware. so i am looking for an c++ lib.
i tried to export the file with audycity, but i get the message: "Your tracks will be downmixed and exported as a mono file.". are there any specific setting to choose? -
Unless you build ffmpeg with libfdk_aac you will not have it.
What you will have is the ffmpeg aac native codec.
cd\ to the location of your ffmpeg bin folder in the command prompt.
Then type this ffmpeg -codecs.
Then find the aac codecs your version of ffmpeg has.
Post the 6-channel .wav & I will see how it converts for me.
The ffmpeg in "ffmpeg for Audacity" does not have the libfdk_aac either.
Your ffmpeg code to get 6 channel should be something like this:
Code:ffmpeg -i input.wav -c:a aac -b:a 320k -ac 6 output.aac
Code:ffmpeg -i input.wav -c:a aac -ac 6 output.aac
-
That's no good, then. I bet the native one is crap, or there wouldn't be a need for a licensed version. My bad.
https://github.com/m-ab-s/media-autobuild_suite
Only just realised the license was mentioned there too.Last edited by Dooby; 17th Feb 2025 at 12:30.
-
-
I read earlier the stereo output is okay, but the multichannel is not so good.
I don't use AAC to be honest; thought the native one would be okay, it being in the library.
My preferences are FLAC, WAV and mp3. -
I wonder if Luggas found a way to do this.
He never posted a sample to work with.
Similar Threads
-
Convert Audiobook 16kbs 44.1khz HE AAC
By PetrusV in forum AudioReplies: 8Last Post: 22nd Aug 2023, 01:20 -
Convert DTS audio to Opus/AAC mkvtoolnix
By UserName351 in forum AudioReplies: 3Last Post: 29th Dec 2021, 19:31 -
Stereo wave to 5.1 Wave Conversion using SoX
By Veda in forum AudioReplies: 27Last Post: 20th Nov 2020, 04:29 -
Unable to extract audio data to wave file on Subtitle edit 3.5.16
By Nakasofi in forum SubtitleReplies: 1Last Post: 14th Sep 2020, 04:42 -
Ridiculously difficult to convert an aac to 6 mono wavs
By takearushfan in forum AudioReplies: 9Last Post: 29th Jul 2020, 13:03