Hello :) i'm building a video server using VLM to allow PC on my network to read videos using streaming. To complete this goal, i successully setup VLC as server using these command: vlc --ttl 12 -vvv --color --vlm-conf "vlm.conf" --extraintf telnet --telnet-password videolan --rtsp-host 1...
Hello :) i'm using libvlc to display rtsp streams. I'd like to use the --rtp-client-port=XX to set the port to use I tried this but it doesnt work: Dim opt(0) As String opt(0) = "--rtp-client-port=" & myport Me.obj_vlc.AddTarget(channel_code, opt) Could u please help me ? Should i use ...
addtarget can only receive a file or a playlist
u have to parse files in directory by yourself and then u add each item to the playlist usin addtarget wrapper
well i used ur code to display rtsp stream.
It works.
But...
Display quality is not really good and channel changing is very slow.
I do not use any options to read a stream.
Before, i used vlc activex and it worked greatly
hello, well i found my error: "Dim opt(1) As String " is wrong, "Dim opt(0) As String " is ok. So i can record now but recording use a lot of cpu usage. In this way, could u tell me what settings are best to record rtsp stream (what encapsulation method, what audio/video codec......
Hello :) i develop a media center application and i'm trying to record rtsp stream with vlc activex V1 (version 0.8.6a) Here is my code: Dim opt(1) As String opt(0) = ":sout=#transcode{vcodec=mp2v,vb=2000,scale=1,acodec=mpga,ab=384,channels=2}:duplicate{dst=display,dst=std{access=file,mux=mp4,d...