function scald_scald_transcoders in Scald: Media Management made easy 7
Implements hook_scald_transcoders().
File
- ./
scald.module, line 1595 - The Scald Core, which handles all Scald Registries and dispatch.
Code
function scald_scald_transcoders() {
return array(
'passthrough' => array(
'title' => t('Passthrough'),
'description' => t('<see scald.admin.inc>'),
'formats' => array(
'type-a' => 'passthrough',
'type-b' => 'passthrough',
),
),
);
}