nessusing
21st June 2008, 12:36
So far i have been trying to use faac commandline to convert an audio file from a avs file.
I am able to do this inside MeGUI no problem, this is the actual command it generates:
faac.exe -b 64 "c:\dummy.aac" -P -X -R 44100 -B 16 -C 2 --mpeg-vers 4 -Freeware Advanced Audio Coder
First, I figure "-Freeware Advanced Audio Coder" isn't doing anything, so i replace it with my acutal avs file:
faac.exe -b 64 "c:\dummy.aac" -P -X -R 44100 -B 16 -C 2 --mpeg-vers 4 "c:\dummy.avs"
That only generate a 0byte dummy.aac file. Then i realized its probably because faac is not reading avs correctly. By reading more on the faac help, i noticed if i only use "-" as my input file, faac will encode directly from stdin. I think this is probably how MeGUI is feeding data from avs to faac using stdin. But my question is how to do this?
Thanks,
I am able to do this inside MeGUI no problem, this is the actual command it generates:
faac.exe -b 64 "c:\dummy.aac" -P -X -R 44100 -B 16 -C 2 --mpeg-vers 4 -Freeware Advanced Audio Coder
First, I figure "-Freeware Advanced Audio Coder" isn't doing anything, so i replace it with my acutal avs file:
faac.exe -b 64 "c:\dummy.aac" -P -X -R 44100 -B 16 -C 2 --mpeg-vers 4 "c:\dummy.avs"
That only generate a 0byte dummy.aac file. Then i realized its probably because faac is not reading avs correctly. By reading more on the faac help, i noticed if i only use "-" as my input file, faac will encode directly from stdin. I think this is probably how MeGUI is feeding data from avs to faac using stdin. But my question is how to do this?
Thanks,