Just checked this issue on a newly installed Kaltura Server and the behaviour is the same.
curl,proxy,centos,red5,kaltura
The "Unable to connect" means you won't get the application list. The downloading of the apps outside the installer app is an option when the installer is not working for whatever reason, here are the direct links: oflaDemo admin SOSample Grab any or all of those wars and put them...
If you're looking to list all media entries that don't have video associated, use the following. Example is in PHP, but will be the same in every language if you use a client library - $filter = new KalturaMediaEntryFilter(); $filter->statusEqual = KalturaEntryStatus::NO_CONTENT; $result = $client->media->listAction($filter); ...
There is no flag for telling if an entry has been updated, but there is a field that keep the timestamp of last update in "updatedAt". you can filter entries by "updatedAtGreaterThanOrEqual" or "updatedAtLessThanOrEqual" by list action through Kaltura api.
KDP is the Kaltura flash player which has this notification for switching bitrates. The notification is still being used internally when the chromeless flash player is loaded and the source selector button is clicked. But it doesn't look like a V2 player notification. You could extend the player by adding...
This is the code that make it all work like a charm, What i did wrong was not putting the event listeners inside the players JsCallbackReady. Spent day's on getting this to work and there is no information about this anywhere so i hope it will help others that want...
javascript,html,html5,player,kaltura
Why did you commented the script, its very crucial to play the dynamic embed. script type="text/javascript" src="../../../mwEmbedLoader.php?debug=true replace this script src with src="http://player.kaltura.com/mwEmbedLoader.php" It should works, hope it helps you....
Those kind of errors are usually related to session permissions. In case of wowza_liveconversionprofile.serve it requires ALWAYS_ALLOWED_FROM_INTERNAL_IP_ACTIONS or ALWAYS_ALLOWED_PERMISSION_HYBRID_ECDN permission. ALWAYS_ALLOWED_FROM_INTERNAL_IP_ACTIONS will be added automatically if the request is coming from an internal IP. You can configure internal IPs using the configuration option internal_ip_range. ALWAYS_ALLOWED_PERMISSION_HYBRID_ECDN can probably be added to...
video-streaming,wowza,hls,kaltura
If you're talking about VOD - we do provide open source vod packager for HLS/HDS/DASH/MSS. https://github.com/kaltura/nginx-vod-module Enjoy :-)...
The issue was resolved after updating Flash Pluging using the following steps: rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux yum check-update yum -y install flash-plugin nspluginwrapper alsa-plugins-pulseaudio libcurl Thereafter the following changes were required in the Kaltura Database as mentioned here …...
The working solution to this was this code. final PlayerViewController mPlayerView = (PlayerViewController) findViewById( R.id.custom_player ); // Autoplay video mPlayerView.registerJsCallbackReady(new KPlayerJsCallbackReadyListener() { @Override public void jsCallbackReady() { mPlayerView.play(); } }); Added here (Github)...