How to make a rtsp server with gstreamer on Windows? -


i trying create rtsp server stream feed webcam encountering issues.

i installed lastest version of gstreamer-devel windows 7 plug-ins.

i have been able achieve on linux c++ script :

gst_rtsp_media_factory_set_launch(factory,                             "v4lsrc device="/dev/video0"                             "! video/x-raw", format=(string)i420, width=(int)320, height=(int)240, framerate=(fraction)15/1"                             "! x264enc" cabac=true tune=zerolatency byte-stream=true sliced-threads=true threads=0 speed-preset=1 "                             "! rtph264pay pt=96 name=pay0 "                             ")"); 

i can visualize webcam feed on windows through command line, command "gst-launch-1.0 ksvideosrc device-index=0 ! autovideosink"

however, unable on windows through visual studio express 2013. have tried replace "v4lsrc ..." "ksvideosrc device-index=0" , remove other options no avail. have been able compile solution cannot see feed on vlc media player

would possibly know how rectify can obtain webcam feed on windows? there compatibility issues or things should aware of enable operation windows?

when add rtsp adress in vlc, have error : gstreamer-critical **: gst_element_make_from_uri: assertion ' gst_uri_is_valid ' failed

it find solution.. maybe


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -