Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Aac Encoding Absolute Path! (Read 3769 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Aac Encoding Absolute Path!

Why does this not work @ dos prompt

c:\documents and settings\administrator\desktop\programming>aacenc -internet -if c:\documents and settings\administrator\desktop\audio.wav -of c:\music\encoded.aac

Im trying to encode a wav file from c:\documents and settings\administrator\desktop\ to c:\music\

Can you encode without moving the audio files to the same directory as aacenc which is in this directory c:\documents and settings\administrator\desktop\programming\

Aac Encoding Absolute Path!

Reply #1
...For the simplest way, simply use Ivan & Menno by Speex..
Don't know why you want to use the dos prompt, better use the frontend.
And, WHY are you using these directories?? ..
Personally, i prefer puting all my audio related programs at c:\audio or d:\audio.
Like, c:\audio\AACEnc, c:\audio\MPC..
Anyway, my opinion...

Aac Encoding Absolute Path!

Reply #2
Quote
....
Yes.. For the simplest way, simply use Ivan & Menno by Speex..

I know it can be done with that front end, but i need to find out how to do that without a front end.  Using the command prompt

Aac Encoding Absolute Path!

Reply #3
WHY?
And do yourself a favor, use different folders.

Aac Encoding Absolute Path!

Reply #4
Quote
WHY?
And do yourself a favor, use different folders.

Im developing a front end of my own and it will not except absolute paths even on the command prompt!

Aac Encoding Absolute Path!

Reply #5
Quote
aacenc -internet -if c:\documents and settings\administrator\desktop\audio.wav -of c:\music\encoded.aac

Paths with spaces always require quotation marks, so change that to:
aacenc -internet -if "c:\documents and settings\administrator\desktop\audio.wav" -of c:\music\encoded.aac

Aac Encoding Absolute Path!

Reply #6
Thanks for that Case.  You always seem to have all the answers! 

Aac Encoding Absolute Path!

Reply #7
"Im developing a front end of my own and it will not except absolute paths even on the command prompt!"
Ah... ok so you did need it.. sorry ..

And damn, quatation marks, i too forgot that! hehehe.. I KNEW THAT! (but not before you reminded me  )

Aac Encoding Absolute Path!

Reply #8
No problem