You are here

function hook_jw_player_supports in JW Player 7.2

Checks a file for JW Player supported media formats.

This hook allow third party module to provide media formats verification for video and audio streams inside a file to be used in JW Player.

Parameters

array|object $file: A file object (or array) to check for support.

Return value

bool TRUE if the file is supported by JW Player.

1 function implements hook_jw_player_supports()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

php_ffmpeg_jw_player_supports in checks/php_ffmpeg.inc
Implements hook_jw_player_supports().
1 invocation of hook_jw_player_supports()
jw_player_supports in ./jw_player.module
Checks a file for JW Player supported media formats.

File

./jw_player.api.php, line 49
Hooks provided by JW Player.

Code

function hook_jw_player_supports($file) {
}