Embed camera footage in mp4 to html5 webpage with gstreamer -


i'm working on small livestreaming project stream aquarium raspberry pi. i'm using gstreamer capture , encode camera footage, , place in tcpserversink served on html5 page (also hosted on raspberry pi).

i can stream pi laptop using udpsink no issues, i've found tcpserversnk not want play chrome. pipeline

gst-launch-1.0 v4l2src device=/dev/video0  ! video/x-raw,width=640,height=480 ! queue ! omxh264enc  ! h264parse ! mp4mux ! tcpserversink host="127.0.0.1" port=8080  

and following webpage here, find not see video in browser.

i'm quite new html5, have plenty of experience gstreamer, , cannot figure out why not work.

any appreciated.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -