The encodeVideoByUrl()
and encodeVideoFile()
method got additional parameters.
If you implement this interface, you'll have to reflect these changes.
Before:
// ...
public function encodeVideoByUrl($url)
{
// ...
}
public function encodeVideoFile($localPath)
{
// ...
}
// ...
After:
// ...
public function encodeVideoByUrl($url, array $profiles = array(), $pathFormat = null, $payload = null)
{
// ...
}
public function encodeVideoFile($localPath, array $profiles = array(), $pathFormat = null, $payload = null)
{
// ...
}
// ...