Exporting AAC audio with multiple channels
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Exporting AAC audio with multiple channels
Hi all!
I extracted an AAC audio track from a mkv with MKVExtractGUI2. The track is 5.1 channels. What I want to do is to add a bit of silence at the beginning to syncronize it and merge it in another mkv, but when I export it with Audacity (Audacity 2.0.6, Windows 7 64 bit) the channels are mixed in a mono track; otherwise, I can export multiple tracks individually.
I searched a bit, but I couldn't find a way to make the modification I need and export it has a 5.1 track.
Thanks in advance.
I extracted an AAC audio track from a mkv with MKVExtractGUI2. The track is 5.1 channels. What I want to do is to add a bit of silence at the beginning to syncronize it and merge it in another mkv, but when I export it with Audacity (Audacity 2.0.6, Windows 7 64 bit) the channels are mixed in a mono track; otherwise, I can export multiple tracks individually.
I searched a bit, but I couldn't find a way to make the modification I need and export it has a 5.1 track.
Thanks in advance.
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Exporting AAC audio with multiple channels
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
Re: Exporting AAC audio with multiple channels
Thanks!
Perhaps, I'm doing something wrong, but I get a 0 KB file. (I've not selected the silence I added at the beginning)
I tried to convert to mp3 (stereo) and it worked.
Perhaps, I'm doing something wrong, but I get a 0 KB file. (I've not selected the silence I added at the beginning)
I tried to convert to mp3 (stereo) and it worked.
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Exporting AAC audio with multiple channels
Yes I should have mentioned this - if you tried AAC multi-channel export using "M4A (AAC) Files (FFmpeg)" or "Custom FFmpeg Export", it will fail because the default libvo-aacenc AAC encoder which the "recommended" FFmpeg uses only supports stereo.Mr Wolf wrote:Thanks!
Perhaps, I'm doing something wrong, but I get a 0 KB file. (I've not selected the silence I added at the beginning)![]()
I tried to convert to mp3 (stereo) and it worked.
And the standard MP3 specification only supports stereo.
WAV (very large) or AC3 export will give you a multi-channel file.
Alternatively, you can use the FFmpeg native AAC encoder instead which supports multi-channel export if you don't mind exporting using "(external program)" and typing out a command: http://forum.audacityteam.org/viewtopic ... 56#p272756.
Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Exporting AAC audio with multiple channels
I know you have LAME installed or you could not have exported MP3. But as I said, the standard MP3 format does not support more than stereo.Mr Wolf wrote:Ok, to be clear, you're not talking about this:
http://lame.buanzo.org/
?
I've this installed.
As I said, to export as multi-channel you can export as WAV or AC3. If you prefer to export as multi-channel AAC, then you must choose "(external program)" and type out the command that tells Audacity to use the native FFmpeg encoder. As it says in the link I gave , you can use a command like either of these two:
Code: Select all
ffmpeg -i - -strict experimental -c:a aac -b:a 240k "%f"Code: Select all
ffmpeg -i - -strict experimental -c:a aac -q:a 10 "%f"Change the "240" in the first command if you want a different bit rate, or if you use the second command, change the "10" if you want a lower quality (10 is the maximum quality).
If you export as WAV or AC3, you will need to check the exported file to be sure you have the channels in the correct order when you play the file in your surround system. If not, you can drag the tracks in Audacity up or down to the correct position then export again. Drag in the panel to left of the blue waves.
Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
Re: Exporting AAC audio with multiple channels
Ok! Many thanks! 