Quote:
Originally Posted by geekmaster
...
Here is how I proxy a video stream to my kindle with 16:9 aspect ratio:
PHP Code:
ffmpeg -i http://mirrorblender.top-ix.org/movies/sintel-2048-surround.mp4 \ -pix_fmt gray -f rawvideo -vf pad=800:600:0:75 -s 800x450 -|./raw2gmv|nc -l 5555
And here is a command to play a file from the host pc at full 800x600 resolution:
PHP Code:
ffmpeg -i SundayPicnic.mp4 -pix_fmt gray -f rawvideo -s 800x600 -|./raw2gmv|nc -l 5555
Here is how I play those video streams on my kindle, after starting them on the PC:
PHP Code:
nc 192.168.15.201 5555|./gmplay
|
I think those link's for NetCats nc command need a -p to specify the port Geekmaster on my Slackware installation ON THE HOST SIDE
like:
ffmpeg -i SundayPicnic.mp4 -pix_fmt gray -f rawvideo -s 800x600 -|./raw2gmv|nc -l -p 5555
HTH someone else get this going