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
Hello Kalturanians,
I have followed the wiki (http://corp.kaltura.com/wiki/index.php/Guides:Download_Mix) to create a download URL for my mix, but when I use "wget" to donwload this URL nothing happens.
I have also tried with other URLs which were already in the node_kaltura table (field: kaltura_download_url), but the same problem occurs.
What am I doing wrong ? do I need to do something special to grab the FLV video ? It would be great if the wiki could be extended with this information. As far as I understand, the donwload URL represents the FLV converted video file, which should be ready for download, right ?
yonailo,
did you ever check the $result of the request ? perhaps the request doesn't at all come successful from some reason?
I have been told that kalturaCE does not support flattening video-mixes, so I think that is the problem.
Thanks anyway!
you never mentioned in your message that this issue is on a kalturaCE.
indeed on kalturaCE flattening is not available
Does KalturaCE support flattening nowadays?
No - only the enterprise edition.
Well, you can try this out. It will flatten your mix for you !!! http://10byte.com/blog/kmf/
I am using something like the following code:
if(empty($node_kaltura_mix->kaltura_download_url)) {
$kaltura_client = KalturaHelpers::getKalturaClient();
$session_user = KalturaHelpers::getSessionUser();
$result = $kaltura_client->addDownload($session_user, $node_kaltura_mix->kaltura_entryId, 'flv');
}
But I am not receiving any notifications back (I don't see anything new in kaltura_notifications table and the download_url remains empty)