function _video_transcoder in Video 6.3
Ensure that specified convertor is included.
File
- ./
video.admin.inc, line 284 - Provides the administration settings for the Flowplayer Drupal module.
Code
function _video_transcoder($gateway) {
$path = drupal_get_path('module', 'video') . '/plugins';
$files = file_scan_directory($path, '^' . $gateway . '\\.inc$');
foreach ($files as $filename => $file) {
include_once $filename;
}
}