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
| Project: | Kaltura Community Edition (CE) - Self Hosted Online Video Platform |
| Version: | api_v3 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
| Total votes: | 0 |
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