mixing:appendmediaentry not working for audio in SaaS (Eagle)

My issue votes
0
votes
0/20 total votes used
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
Description

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