I've tried ffmpeg, nero, eac3to, tsmuxer, libav, qaac and megui. I have a 6 channel aac from a movie. I just want to demux it to 6 mono wavs. I keep getting the error the Nero Decoder 2 instance failed, no matter what I do, trying other versions, etc.
In 2020 is there still no easy way to do this? Please advise. I'm on Win 10.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 10 of 10
			
		- 
	
- 
	Have not verified this yet, but why don't you try doing it in 2 steps?: 
 multichannel AAC -> multichannel WAV, and then
 multichannel WAV -> individual mono WAV files
 
 There seems to be a number of tools that should do that.
 
 
 Scott
- 
	
- 
	
- 
	
- 
	Or just put the aac file and batch file in a folder the CLI can write to. 
 
 Try this minor modification in a batch file:
 
 You can drag/drop any AAC file onto it and the output WAVs will be generated in the same folder as the AAC file. If you put the batch file in your SendTo folder with the name AAC2WAV.BAT you can right click on any AAC file and select Send To -> AAC322WAV.BAT.Code:ffmpeg -i %1 -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]" -map "[FL]" "%~dpn1.front_left.wav" -map "[FR]" "%~dpn1.front_right.wav" -map "[FC]" "%~dpn1.front_center.wav" -map "[LFE]" "%~dpn1.lfe.wav" -map "[BL]" "%~dpn1.back_left.wav" -map "[BR]" "%~dpn1.back_right.wav" Last edited by jagabo; 29th Jul 2020 at 12:45. 
- 
	Just in case you may need it later .... 
 https://manual.audacityteam.org/man/installing_ffmpeg_for_windows.html
Similar Threads
- 
  Convert 5.1 PCM WAV to Six Mono WAVs, Knowing Which WAV Goes to Which ChannBy koberulz in forum AudioReplies: 2Last Post: 28th Dec 2019, 13:53
- 
  Why is this such rocket science (8 channel HD-DTS > 8 individual mono wavs)By newintown82 in forum Newbie / General discussionsReplies: 2Last Post: 16th Jan 2018, 04:53
- 
  Converting an AAC Mono file to AAC Stereo, higher audio bitrate?By brightmademedia in forum AudioReplies: 2Last Post: 17th Jun 2017, 10:41
- 
  Can I keep mono audio on AAC?By synnchan in forum Newbie / General discussionsReplies: 1Last Post: 9th Nov 2016, 11:37
- 
  find pink noise wavs in 80000 wavs libraryBy prfraczek in forum AudioReplies: 2Last Post: 30th Aug 2016, 08:25


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			


 Quote
 Quote 
 
			
			 
			 
			
