


The correct flavor Ids (per account and Kaltura edition) can be retrieved by: The original uploaded video (before transcoding) = 0 The following list are common flavor Ids on the Kaltura SaaS edition, but note flavors change and upgraded often (improved quality, new codecs, etc.) - Use this list for example purposes. Note: Only flavor id 0 (zero) is static and the same across Kaltura editions. The following lists few of the conventional flavor Id's: This parameter has various options, depending on the Kaltura server deployment and publisher account. The VideoFlavorId parameter determines which video flavor the API will return as download.
M3U URL EXTRACTOR DOWNLOAD
$multiRequestResults = $client->doMultiRequest() Įcho 'The entry download URL is: '.$downloadUrl Video Flavor Id $client->flavorAsset->geturl($req1ResultFlavorId) //this action will return a valid download URL $req1ResultFlavorId = '' //get the first flavor from the result of getwebplayablebyentryid $client->flavorAsset->getwebplayablebyentryid($entryId) $entryId = '1_u7aj9kasw' //replace this with your entry Id $ks = $client->session->start($secret, $userId, KalturaSessionType::ADMIN, $partnerId, 86400, 'disableentitlement') when creating the Kaltura Session it is important to specify that this KS should bypass entitlemets restrictions:
M3U URL EXTRACTOR CODE
geturl API action.īelow is a PHP code sample for retrieving the download URL of a web-playable flavor for a desired entry Id: //Client library configuration and instantiation.

Be certain to have the Partner ID and Entry ID at hand. To call the playManifest API and retrieve a specific video flavor, call the following URL. To retrieve a specific video flavor, call the playManifest API. An XML response in the form of Flash Media Manifest File.An XML response in the form of a MPEG-DASH Media Presentation Description (MPD).A redirect to video file for progressive download, or an M3U8 stream descriptor for Apple HTTP Streaming, aka HLS.The playManifest is a redirect action, its purpose is to direct media player applications to the desired video stream.

The following will guide developers of using the playManifest API call to retrieve specific transcoded video flavors from a Kaltura account. In cases where you need to access the playback stream directly, or just a link to download the video file, you will need to consider the target playback devices, any security protocols applied to your Kaltura account and video, and then call the suitable API methods. Often applications need a direct URL for downloading the raw media file for purposes such as streaming outside of the Kaltura Player, processing the video data (such as video analysis or transcriptions) and more. The Kaltura Player abstracts the need to retrieve direct access to the video file, and handles the various aspects of the video playback including multi-bitrate, choosing the correct codec and streaming protocols, DRM, Access Control and more.
M3U URL EXTRACTOR HOW TO
How to retrieve the download or streaming URL using API calls? Expand/Collapse All
