In Windows by Command line i can play some services from a TS Stream. for that, i run some vlc on a TS Stream as below : > vlc udp://@:1001 --program 204 > vlc udp://@:1001 --program 205 > vlc udp://@:1001 --program 208 As a result 3 instance of vlc run and each one play a service. But when i create...
Hi This is my Code i want to select specific program when play a file. This code play file but i want to select program number = 203 from file to play. is there any incorrect argument. please help me. var argument = new string[] { "--program=203"}; IMediaPlayerFactory factory = new MediaP...
I want to play multiple service from a TS Stream or TS file that has some services on it.
i have tested --programs=<string> for example
vlc e:\test.ts --programs 204,205
204 and 205 is service IDs on test.ts , but it can't get result
please help
I am using LibVlcWrapper to play video on c#. I have a TS Stream with some services on it. i want to select a channel( service ) from it t play. i pass an argument and select it and it work correctly. But i want to play 2,3 or more channel from TS Stream on seprate window. how i can do it. this is a...
You need to launch VLC multiple times. I am using LibVlcWrapper to play video on c#. I have a TS Stream with some services on it. i want to select a channel( service ) from it t play. i pass an argument and select it and it work correctly. But i want to play 2,3 or more channel from TS Stream on se...
Hi This is my Code i want to select specific program when play a file. This code play file but i want to select program number = 203 from file to play. is there any incorrect argument. please help me. var argument = new string[] { "--program=203"}; IMediaPlayerFactory factory = new MediaPl...
LibVLC 3.0 supports media items using custom read callbacks. You cannot feed "packets" as such though, only a byte stream. Ok, Thanks for reply, I want to use my readback method and return byte. My means of packet is video and audio structure in ts stream. is there any sample for libvlc 3...
Hi Is there any way that can read stream and put video and audio packet manually into libvlc input buffer. i have a ts stream. i want to play any service manually by insert packets into buffer libvlc . i know libvlc can play all of services, but i want to feed libvlc input buffer in code. please hel...