Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

How to setup tvp5151 video decoder

261 bytes added, 11:32, 8 June 2012
no edit summary
= Play with TVP5151<br> =
You can use for get the captured images [http://downloads.isee.biz/pub/files/tvp5151/2.6.35/yavta yavta] or gstreamer as live stream.<br> &nbsp;You can download the sources from [http://downloads.isee.biz/pub/files/tvp5151/2.6.37/yavta.tar.gz here] or access to yavta git from [http://git.ideasonboard.org/yavta.git/commit/82ff2efdb9787737b9f21b6f4759f077c827b238 here].
This is the suggested yavta capture setup:<br>
Set up UDP server from IGEPv2:<br>
<pre>gst-launch-0.10 -v v4l2src device=/dev/video2 queue-size=8 &nbsp;! video/x-raw-yuv,format=\(fourcc\)UYVY &nbsp;! TIVidenc1 codecName=h264enc \engineName=codecServer resolution=720x576 &nbsp;! rtph264pay pt=96 &nbsp;! udpsink host=&lt;YOUR_PC_IP&gt; port=&lt;PORT&gt;
</pre>
Set up UDP client on your Machine:
<pre>gst-launch-0.10 -v udpsrc do-timestamp=false port=&lt;PORT&gt;&nbsp; caps="application/x-rtp, media=(string)video, clock-rate=(int)90000, \encoding-name=(string)H264, payload=(int)96, ssrc=(uint)446210637, clock-base=(uint)697749128, seqnum-base=(uint)21380" &nbsp;! queue \ ! rtph264depay &nbsp;! ffdec_h264 &nbsp;! xvimagesink
</pre>