PDA

View Full Version : Encoding with enc_aacplus


Eretria-chan
8th August 2006, 01:35
I'm having difficulties...
First, I extracted the audio stream from an avi file which, apparently, is VBR. The file contains only a WAVEFORMATEX header and the mp3 data. Anyway, the file plays fine (in Zoom Player & DirectShow, but not wmp strangely).
enc_aacPlus didn't want to accept is as input, so I tried settings up a graph in GraphBuilder -> source -> MPEG-I Splitter -> Dshow Audio Decoder -> Wav DEST -> File Writer to convert it to a wave file. However, I also found that enc_aacPlus did not accept this converted, new file. I also tried to make a wrapper around the mp3 file in an avisynth script with DirectShowSource and use avs2wav to convert it to wav, but it too, failed. It simply stayed at scanning and did not write any data to the output file.

So my question is: how do I make a file that can be converted with enc_aacplus?

Sirber
8th August 2006, 13:21
avs2wav works

using it in RA4/5, xAnime.

maybe you are missing things (DLLs) for enc_aacPlus.

Eretria-chan
8th August 2006, 13:26
Yes, but the problem is that it won't accept the input file.
Though I am planning on wrapping the audio in an avi container and see if avs2wav can extract it then.

Eretria-chan
10th August 2006, 20:37
I don't suppose anyone knows how to convert audio streams to a wave stream that enc_aacplus can accept? It's verytouchy about its input file. I just cannot make it accept it.
Sometimes it does; sometimes it doesn't.
Maybe it has something to do with the bitrate? I'm not sure. But I need a good solution to convert the audio to wav, so I can input it to enc_aacPlus.

Skelsgard
11th August 2006, 12:20
I don't suppose anyone knows how to convert audio streams to a wave stream that enc_aacplus can accept? It's verytouchy about its input file. I just cannot make it accept it.
Load the WAV_EXT wav into Wavewizard and export it as WAV PCM.

http://img150.imageshack.us/img150/3661/wwrw9.jpg

Cya

Eretria-chan
11th August 2006, 13:34
Maybe I wasn't clear enough... I need to do in a programmatic way.

Sirber
11th August 2006, 13:44
is your wav more than 2 channels?

Maybe I wasn't clear enough... I need to do in a programmatic way.
There's a development forum ;)

Eretria-chan
13th August 2006, 15:14
is your wav more than 2 channels?
No, just two. But the bitrate was low (56 kb/s).

There's a development forum ;)
Then go ahead and move it there, if it is appropriate. I don't feel like starting another thread.

gameplaya15143
17th August 2006, 17:55
No, just two. But the bitrate was low (56 kb/s).
Sounds like that's an mp3 encoded wav. You need uncompressed audio data so that enc_aacplus.exe can read it.

Considering it is just 2 channels, I would just use dBpowerAMP for the entire process. :sly:

Eretria-chan
17th August 2006, 18:01
This is, well, useless. Avs2wav does a good job MOST of the time.