View Single Post
  #2 (permalink)  
Old 22nd Sep 2007, 2:29 pm
techt techt is offline
New Member
 
Join Date: Sep 2007
Posts: 12
Default

Quote:
Originally Posted by ghost0001";p=&quot View Post
To anyone who knows how to, please help me. I am having difficulties trying to convert avi's to asf's for my pmp. I really don't know what i am doing wrong. but seems every time i use xillisoft, super, MediaCoder, or whatever i have i cant get it to convert correctly. However I have used the PMP transcoder. It just makes my files from 90mb to over 100 when it is done. Looking for a program that can make it small and work. someone please help.

information:

Audio:
Bit Rate: 1241kbps
Sample Size: 4 bit
Channels: 1
Sample Rate: 8kHz

Video:
Size: 320 X 240
Data Rate: 1195kbps
Sample Size: 24 bit
Our PMPs have the same harware (but the player software is different between ours.) The software that came with my PMP, Sunplus PMP, automatically makes files using MP4 video but with uncompressed audio (which is why the ASFs tend to be so large.) Sunplus PMP appears to be a GUI wrapper around ffmpeg. The audo is uncompressed 16 bit little-endian PCM at a choice of either 8khz, 16khz, or (I think, this is all from memory) 24khz sample rate.

Try using ffmpeg. You'll be able to tweak things.

Try something like (untested):
Code:
ffmpeg -i INFILE.AVI -f asf -vcodec mpeg4 -b 600 -s 320x240 -acodec pcm_s16le -ar 8000 OUTFILE.ASF
Reply With Quote