create vlc playlists with key bisses inside ?

Plasma70

Registered
Messages
55
I would like to create a playlst with various video.ts files for vlc.
These files are all encoded with key biss.
How do I insert the key biss in the .m3u playlist?
Thank you.

example:
<?xml version="1.0" encoding="UTF-8"?>
<playlist xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/" version="1">
<title>Scaletta</title>
<trackList>
<track>
<location>file:///C:/Users/Net/Desktop/VIDEO1.TS.ts</location>
<duration>524089</duration>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:eek:ption>file-caching=5000</vlc:eek:ption>
</extension>
</track>
</trackList>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0"/>
</extension>
</playlist>

My csa key 1122334455667788
how do i insert my csa key biss?
 

Plasma70

Registered
Messages
55
I have searched but I have not found, I should register and ask them. I thought I could find someone here who knew it.
 

kebien

Registered
Messages
1,329
You must start vlc with a command line using the key option like
--ts-csa-ck 1122334455667788

and then load the playlist.
In theory,once VLC loads the key,it will use it during the whole session
 

Plasma70

Registered
Messages
55
I need to create a playlist with various video.ts inside and therefore for each video in the playlist there must also be its csa key. I know the command --ts-csa-ck 1122334455667788 but I don't know how to insert it in the playlist.
 

kebien

Registered
Messages
1,329
VLC cannot change keys dynamically,which is what you try to do.
Changing channels in playlist won't change the original key VLC started with,must stop and reload.
At least this is the way it worked before,and I think never changed.

For playing a TS,you could try using DVBviewer or other programs that can play TS files and also use emulators.
TS files should carry a PMT with the CA id in order to be able to use emu plugins.
That's an alternative,but not sure is what you want.
VLC is limited to use one key per session.
 
Top