Skip to content
Snippets Groups Projects

Issue #3347969: Fatal error if ffmpeg is enabled but binary not found

@@ -50,7 +50,12 @@ class Html5 extends ProviderPluginBase {
$this->phpFFMpeg = FALSE;
if ($module_handler->moduleExists('php_ffmpeg')) {
$this->phpFFMpeg = \Drupal::service('php_ffmpeg');
try {
$this->phpFFMpeg = \Drupal::service('php_ffmpeg');
} catch (\Exception $e ) {
// do nothing, will remain as false
}
}
$this->fileSystem = $file_system;
$this->config = $config_factory->get('video_embed_html5.config');
Loading