You are here

function scald_transcoders in Scald: Media Management made easy 7

Get the available Scald Transcoders.

This function returns a structured array which specifies all the currently provided Scald Transcoders. The actions are in an array with one or more elements in the format: array( 'transcoder-slug' => array( 'provider' => 'provider-name', 'formats' => array( 'type-slug' => 'file_format', ... ), ... );

Return value

array The Scald Transcoders array

4 calls to scald_transcoders()
ScaldAtomController::save in includes/ScaldAtomController.inc
Save changes to a Scald Atom, or create a new one.
scald_admin_contexts_form in includes/scald.admin.inc
Form for admin settings for Scald Contexts.
scald_prerender in ./scald.module
Prepare a Scald Atom for rendering.
scald_unregister_atom in ./scald.module
Unregister a Scald Atom.
1 string reference to 'scald_transcoders'
scald_update_7000 in ./scald.install
Updates the schema from the 6.x version.

File

./scald.module, line 234
The Scald Core, which handles all Scald Registries and dispatch.

Code

function scald_transcoders($reset = FALSE) {
  return _scald_get_info('transcoders', $reset);
}