Copyright © 2012 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
To reproduce use the test me console or this script:
<?php
require_once('lib/KalturaClient.php');
$config = new KalturaConfiguration($partnerId);
$config->serviceUrl = 'http://www.kaltura.com/';
$client = new KalturaClient($config);
$mixEntryId = null;
$mediaEntryId = null;
$client->setKs('yourKS');
$mixEntryId = 'a_mix_entry_of_your_own';
$mediaEntryId = 'an_audio_entry';
$results = $client-> mixing ->appendMediaEntry($mixEntryId, $mediaEntryId); ?>
This does not return an error but the audio is not included in tag nor visible with the KSE.
thx a lot