
19th Sep 2007, 2:03 am
|
|
New Member
|
|
Join Date: Sep 2007
Location: Hertfordshire
Posts: 7
|
|
Re: cannot play videos on mp4 Rockchip player
I have a Rockchip MP4 player with 2.4" screen. I download videos from the net in FLV format. To play them on the player I use FFMPEG , which is a free command line AV convertor. I convert the Flash Video into AVI. The thing to remember is that for 2.4" screens the resolution must be 320x240 , the video frame rate must be 20 fps and sound must be in MP2 format. All these parameters may be specified in FFMPEG.
Example: FFMPEG -i flash.FLV -vcodec xvid -s 320x240 -r 20 - b 512 -acodec mp2 -ar 44100 newfile.AVI The important thing here is that the resultant file must be AVI with the xvid codec - unfortunately I cannot get FFMPEG to do this correctly (although it supports it) - therefore I repeat the process using avconvertor 3.1 to compress the newfile into xvid. In windows, Right click & summary tab on the resultant file to see its properties to check all the parameters are correctly set (MUST have video compression of: xvid) . If in doubt, look at the sample video's attributes. Why don't I just use avconvertor? I tried that and the conversions all failed or I got format errors when playing them. Aswell as NOT supporting FLV files, it seems avconvertor 3.1 gets upset if it has to perform too many file attribute changes, if FFMPEG does most of them prior, its fine. PS- when using avconvertor, make sure the resultant file is in the same folder as the input file, its quicker!
|