Hi,
I am trying to watch captured video on HTML tag in my browser, I update tv script to use my ip address and the I was able to see captured video in VLC with 3-4 seconds delay in one of my remote machine.
But I was not able to run my test cases during the time when stbt tv was running, I guess because of capturing port was engaged to serve stbt tv.
Is there any gstreamer pipeline or other approach which can stream video over HTTP along with test cases running in parallel?
Though, I tried below code; It was giving me stream over web with huge delay but test cases were not able to run.
Below HTML page runs with under neath gstreamer command but test case wont run in parallel.
<html>
<title>A simple HTML5 video test</title>
</html>
<body>
<video autoplay controls width=320 height=240>
<source src="
http://10.100.10.187:5300" type="video/webm" codecs="vp8.0, vorbis">
browser support element <code>video</code>.
</video>
</body>
++++++++++++++++
gst-launch-1.0 decklinkvideosrc mode=720p5994 connection=sdi device-number=1 ! videoconvert ! vp8enc cpu-used=6 min_quantizer=32 max_quantizer=32 ! webmmux ! tcpserversink host=10.100.10.187 port=5300+++++++++++++++ works
gst-launch-1.0 decklinkvideosrc mode=720p5994 connection=sdi device-number=1 ! videoconvert ! videoscale ! video/x-raw,width=1280,height=720 ! x264enc ! mpegtsmux ! tcpserversink host=10.100.10.187 port=5300
Vlc tcp://10.100.10.187:5300
Thanks,
Chandra