I have used this little script to convert from "1280x720 TV episodes in 10bit h264/mkv" to "800x450 AVI (xvid)", so the pandora can cope with them. I have tested it in a 1Ghz pandora with default settings, and also at 600 mhz, so it should work ok in a classic/rebirth one too.
In the hopes that this is useful for someone .
For linux:
encode.sh
It would be used as:
For windows
I suppose that the following would work with the mencoder for windows, but I have not tested it:
encode.bat
It would be used as:
In the hopes that this is useful for someone .
For linux:
encode.sh
Code:
#!/bin/sh
mencoder "$1" -oac mp3lame -ovc xvid -vf scale=800:450 -xvidencopts fixed_quant=4 -o "$2"
It would be used as:
Code:
./encode.sh my720pvideo.mkv mypandoravideo.avi
For windows
I suppose that the following would work with the mencoder for windows, but I have not tested it:
encode.bat
Code:
mencoder %1 -oac mp3lame -ovc xvid -vf scale=800:450 -xvidencopts fixed_quant=4 -o %2
It would be used as:
Code:
encode my720pvideo.mkv mypandoravideo.avi
Last edited by a moderator: