Copyright © 2011 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
Hi All,
I am getting the data from the kaltura on my coding.
Now i want to display all the clips on my page .aspx
Will anyone tell me how to do that?
Hi millsC,
I am getting the data from kaltura in the KalturaMediaEntry object. Now in this object I am getting the dataURL and downloadURL.
Which both give me the targeting video which i want to show to user.
Now the problem is They provide it as URL. Now how can I display it in a player.
So as soon as my page load it will display the video's automatically in the player. Also in which player i should show the video.
I want to use kaltura player to run the video .
You don't need dataURL or downloadURL to play the video.
You need to use KDP (Kaltura Dynamic Player) on your .aspx page to play the video.
Find the "entryId" from the data returned from Kaltura and load it to your client KDP. Using kaltura player to run the video is all client HTML and javascript program.
You can find KDP document and sample here http://www.kaltura.org/kdp-basic-usage-embedding-html-pages-and-playback
Hope this would help.
Thnks MillsC for your prompt reply
I am still confused about how to implement.
Will you please provide me with a little working application?
Thanks In Advance.
MillsC Will u please let me know how to use more then one kdp on the same page.
I am using the following code BUT it is still showing only the one. The last one.
var params = {
allowscriptaccess: "always",
allownetworking: "all",
allowfullscreen: "true",
wmode: "opaque"
};
var flashVars = {
entryId: "dw4ebql5yg"
};
swfobject.embedSWF("http://www.kaltura.com/kwidget/wid/_pid/{PLAYER_CONFIGURATION}", "kplayer", "400", "360", "9.0.0", false, flashVars, params);
var params = {
allowscriptaccess: "always",
allownetworking: "all",
allowfullscreen: "true",
wmode: "opaque"
};
var flashVars = {
entryId: "382f9xebi0"
};
swfobject.embedSWF("http://www.kaltura.com/kwidget/wid/_pid/{PLAYER_CONFIGURATION}", "kplayer", "400", "360", "9.0.0", false, flashVars, params);
where i am making the mistake..
Thnks MillsC.
Your help is really appriciated. It works for me...
Thanks A Lot...
Hi MillsC,
I am having a trouble and would like to know if you have any solution for this.
I want to show the video to the user in one page and there could be more then one videos on kaltura.
So I am using repeater and fetching the entryid.
Now how to set the entry id for the player so that all player generate dynamically loding the particular entry or video.
Kindly look at the code.
var params = {
allowscriptaccess: "always",
allownetworking: "all",
allowfullscreen: "true",
wmode: "opaque"
};
var flashVars = {
entryId: "dw4ebql5yg"
};
swfobject.embedSWF("http://www.kaltura.com/kwidget/wid/_43432/{PLAYER_CONFIGURATION}", "kplayer", "200", "160", "9.0.0", false, flashVars, params);
-->
HI MillsC,
Thanks for ur all support.
It is working fine now...
Thanku Very Much..
Hi,
I would like to know that is it possible to provide the buttons in the player like forward and Previous to go back and go forward.
Thanks in Advance...
Hi Ashish,
Glad to know my reply helps. :-)
You can add your own buttons to perform going forward or going to a specific time.
Here is the sample http://www.kaltura.org/kdp_js_api_demo_page.html
Document: http://www.kaltura.org/kdp-apis-about-javascript-integration
//seek to the 10th second.
myKdp.seekMedia(10);
I am not sure you want to add buttons "IN" the player unless you want to modify KDP code.
I am not sure I understand your question.
Are you having problems of transfering the data you got from Kaltura to your .aspx page?