[mythtv-users] mythtv and PSP: getting records on a PSP?

2005-11-01 Thread Hanno 'Rince' Wagner
Hi, has anyone already found a way to export recordings on a memory Stick to look it on a PSP? I tried nuvexport, but it doesn't work (there is a way to tell nuvexport that ffmpeg is able to use psp-file format, but it doesn't help). The only explanation I found was with an .avi-file as source,

Re: [mythtv-users] mythtv and PSP: getting records on a PSP?

2005-11-01 Thread WiFi Fun
ffmpeg -i /path/myrecording.nuv -deinterlace -vcodec xvid -s 320x240 -r 29.97 -b 384 -qmin 3 -qmax 9 -bufsize 4096 -acodec aac -ab 96 -g 300 -f mp4 mypspfile.mp4 That ffmpeg line should give you a file playable on the PSP. you could save out a log file and do a second pass for better quality. You

Re: [mythtv-users] mythtv and PSP: getting records on a PSP?

2005-11-01 Thread Byron Poland
On 11/1/05, WiFi Fun [EMAIL PROTECTED] wrote: ffmpeg -i /path/myrecording.nuv -deinterlace -vcodec xvid -s 320x240 -r 29.97 -b 384 -qmin 3 -qmax 9 -bufsize 4096 -acodec aac -ab 96 -g 300 -f mp4 mypspfile.mp4 That ffmpeg line should give you a file playable on the PSP. you could save out a