RSATom / WebChimera

[DEPRECATED] Web browser plugin based on Vlc + Firebreath + Qt Quick 2/Qml
GNU Lesser General Public License v2.1
83 stars 22 forks source link

Reproduce UDP streaming with CSA encryption. #8

Closed diegonaranjo closed 10 years ago

diegonaranjo commented 10 years ago

Hi Tom, thanks for this good project. I´m trying to embed the player to reproduce a UDP TS stream with CSA, but i don´t know if its possible to reproduce it. Is there any option available for CSA encryption?

Thanks! Diego

RSATom commented 10 years ago

Did you try play this stream with VLC player? I just never met such streams...

diegonaranjo commented 10 years ago

Yes, in VLC works fine. I have to set the option :ts-csa-ck=1234567890ABCDEF. Maybe this option can be embed in the html, but i dont know any sample.

There is a print screen from my VLC.

csa

RSATom commented 10 years ago

did you try

.addWithOptions("udp://@239.192.44.14:1234", ":ts-csa-ck=1234567890ABCDEF")

?

RSATom commented 10 years ago

btw, do you prefer use FBVLC or WebChimera?

diegonaranjo commented 10 years ago

It´s my first time with web plugin and WebChimera. I tried with VLC web plugin but it didn´t work for me.

Now, i use .addWithOptions, i tried this but i think something is wrong with my code:

<object id="vlc" type="application/x-chimera-plugin" width="1024" height="576" >

Thanks!

On Wed, Jul 23, 2014 at 5:54 AM, Sergey Radionov notifications@github.com wrote:

btw, do you prefer use FBVLC or WebChimera?

— Reply to this email directly or view it on GitHub https://github.com/RSATom/WebChimera/issues/8#issuecomment-49848529.

RSATom commented 10 years ago

try following please

var options = new Array(":ts-csa-ck=1234567890ABCDEF");
vlc.playlist.addWithOptions("udp://@239.192.44.11:1234 ", options);
diegonaranjo commented 10 years ago

It´s works perfect! Thanks. Best regards.

RSATom commented 10 years ago

You are welcome!