Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hello, I have a few questions,
I have created a custom KDP with a Playlist Module, but I have not been able to figure out how to attach or create playlists for it.
Here is the scenario:
viewlistings.php?view=6 is going to have 1 KDP player for Video Only, and 1 KDP w/ Playlist. The Video's EntryID I have stored on my local Database and I have no problems using flashVars to attach the video to my primary KDP. In my database I also have a list of audio files (EntryID dataURL, etc) for that particular listing. Basically after upload, I get the details of the uploads and save them to my database.
Reading the playlist api docs, I find that I need to use the following format for the flashVars:
If I use the entryId: alone, then everything works, but I don't have a playlist. If I use the k_pl_ format, I can't get the playlist to load. I manually created this playlist using the KMC and got the info of the url using the testme console, however I am stuck and can't figure out what I am doing wrong.
Thanks for any help provided.
Hi Jesus,
When I try to access the playlist URL with my browser -
http://www.kaltura.com/index.php/partnerservices2/executeplaylist?uid=&partner_id=2xxxx&subp_id=2xxxxxx&format=8&ks={ks}&playlist_id=omn68qzl14
it doesn't return any results (try for yourself). this means that something is wrong with the playlist or that it is empty. This is probably the cause for the problem.
Yea, sorry about that, the correct URL is:
I had removed the id's from the string when posting here. Still same results.
We found the fix thanks to Assaf.Chaprak
My error was that I was not using the url encoded. And the url must be encoded
Can't edit my original post, but I fix my original typo on my k_pl_0_url:
This is what I have now:
k_pl_0_name: "Test",
k_pl_0_url: "http://www.kaltura.com/index.php/partnerservices2/executeplaylist?uid=&partner_id=2xxxx&subp_id=2xxxxxx&format=8&ks={ks}&playlist_id=omn68qzl14"
};
Still Same results...