You are here

function emvideo_convert_to_seconds in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/emvideo.module \emvideo_convert_to_seconds()
  2. 6.2 contrib/emvideo/emvideo.module \emvideo_convert_to_seconds()
1 call to emvideo_convert_to_seconds()
emvideo_archive_duration in contrib/emvideo/providers/archive.inc
hook emvideo_PROVIDER_duration($item) Returns the duration of the video in seconds.

File

contrib/emvideo/emvideo.module, line 637
Embedded Video module is a handler for 3rd party video files.

Code

function emvideo_convert_to_seconds($time) {
  module_load_include('inc', 'emvideo', 'emvideo.theme');
  return _emvideo_convert_to_seconds($time);
}