On Tue, 13 Jun 2006 23:30:40 +0200 luukes <[EMAIL PROTECTED]> wrote: > hello! > i have a haupauge pvr 150 which has an mpeg2-encoder and i want > to process the incoming mpeg2 stream. > > if i do > # cat /dev/video0 > test.mpg > # transcode -x mpeg2,null -i test.mpg -k -g 720x576 -f 25,3 -y > yuv4mpeg,null ... > everything works. > > but i don't want to write a huge file to disk, i want > to read from the device (or from a pipe). > # transcode -x mpeg2,null -i /dev/video0 -k -g 720x576 -f 25,3 -y > yuv4mpeg,null ... > then many parts of the picture are destroyed (mainly on the right side) > but some parts are ok. [...]
Mi first thought is that seeking will be disruptive in such kind of streams. So, try adding -H 0 to disable probing, hopefully it should help. Best regards, -- Francesco Romani - Ikitt ['people always complain, no matther what you do'] IM contact: (email-me, I have antispam default deny!) icq://27-83-87-867 some known bugs: http://www.transcoding.org/cgi-bin/transcode?Bug_Showcase
