I work for a middle sized school and we would like to stream TV channel into the LAN, so a teacher or even student can consume it with VLC as client.
So i have to get the Datastream from the TV-Cards and broadcast/multicast them into the Network.
--> Can is use VLC/VLM to get the Data from the TVCards and Stream them with SAP Announce? Or do i need something different like mumudvb?
I tried it for testing with VLM and two webcams, but failed.
- could not watch the stream in endclient (connecting to the sap announce)
- sap announce i can see sometimes one, sometimes two of them... but i have to manualy start them in vlm
This was my VLM file, for my first test:
--> Anything wrong with my file?
I don't want to transcode, just forward whats coming from this webcams.
Code: Select all
# VLC media player VLM command batch
# http://www.videolan.org/vlc/
new tv1 broadcast enabled
setup tv1 input "http://46.234.32.81/axis-cgi/mjpg/video.cgi"
setup tv1 output #rtp{dst=127.0.0.1,port=50005,mux=ts,sap,name=biotop1}
new tv2 broadcast enabled
setup tv2 input "http://46.234.32.82/axis-cgi/mjpg/video.cgi"
setup tv2 output #rtp{dst=127.0.0.1,port=50015,mux=ts,sap,name=biotop2}
control tv1 play
control tv2 play
Philipp