Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

How can I use my own CDN?

$
0
0

Sorry but I still don't understand what you want to accomplish.

By default, CE makes use of nginx-vod-module to serve files in HLS, HDS and DASH formats.

The first relevant service in that regard is playManifest, the code of which is here:
/opt/kaltura/app/alpha/apps/kaltura/modules/extwidget/actions/playManifestAction.class.php

Then, as I explained before, the following default profile IDs are used to serve HLS, HDS and DASH, respectfully:
mysql> select id,name,streamer_type from delivery_profile where id in (1001,1002,1003)\G
*************************** 1. row ***************************
id: 1001
name: Kaltura HLS segmentation
streamer_type: applehttp
url: http://CE_NGINX_HOST/hls
*************************** 2. row ***************************
id: 1002
name: Kaltura HDS segmentation
streamer_type: hdnetworkmanifest
url: http://CE_NGINX_HOST/hds
*************************** 3. row ***************************
id: 1003
name: Kaltura DASH segmentation
streamer_type: mpegdash
url: http://CE_NGINX_HOST/dash

By default, the url for each record points to the CE_NGINX_HOST, which has the vod-module loaded.
There is documentation for nginx-vod-module in its repo's README.


Viewing all articles
Browse latest Browse all 7410

Trending Articles