Hello everyone
I have a problem with the VLC's 1.1 version in order to broadcast an RTP stream.
The video comes from a capture card "Extreme EX1" and the sound of a standard audio chipset.
I have no video when I send a transcoded stream h264 aac encapsulated in MPEG-TS.
The file recorded during the broadcast is transcoded with mux=mp4 and everything is ok.
I suspect the mux=ts not work well with h264 in this version of VLC
or maybe the libstream_out_rtp_plugin.dll
I hope i'm wrong.
The sound is here but not the vidéo.
Here the batch i'm using
/*********************************************/
taskkill /f /im vlc.exe
set nomfichier=%DATE:~0,2%_%DATE:~3,2%_%DATE:~6,4%_a_%TIME:~0,2%h%TIME:~3,2%mn%TIME:~6,2%s.mp4
start vlc --config vlcrc dshow:// --sout=#transcode{vcodec=h264,vb=1024,acodec=mp4a,ab=128,channels=2,samplerate=44100}:duplicate{
dst=rtp{dst=239.172.21.2,port=2234,mux=ts}, <= doesn't work (no vidéo, only audio)
dst=std{access=file,mux=mp4,dst="C:\%nomfichier%"} <= work very well
}
exit
/*********************************************/
Thank you for helping.