2016-04-06 12 views

Antwort

0

Nach dem Dokument auf Github bei https://github.com/Azure/azure-sdk-for-php#encode-asset machen über Encode Asset, können Sie versuchen Aufgabe Voreinstellungen für MES (Media Encoder Standard) über zu konfigurieren:

$mediaProcessor = $this->restProxy->getLatestMediaProcessor('[Media processor]'); 

$task = new Task('[Task XML body]', $mediaProcessor->getId(), TaskOptions::NONE); 
$task->setConfiguration('[Configuration name]'); 

$restProxy->createJob(new Job(), array($inputAsset), array($task)); 

Und Sie beziehen sich auf https://msdn.microsoft.com/en-us/library/mt269926.aspx für eine Probe von Aufgabe voreingestellten xML-Inhalt kann.

+0

Hallo, irgendwelche Updates noch? –