You are here

function video_filter_myvideo in Video Filter 7.3

Callback for MyVideo codec.

See also

video_filter_codec_info()

1 string reference to 'video_filter_myvideo'
video_filter_codec_info in ./video_filter.codecs.inc
Implements hook_codec_info().

File

./video_filter.codecs.inc, line 773
This file contains all codecs provided by Video Filter.

Code

function video_filter_myvideo($video) {
  $video['source'] = '//www.myvideo.de/embedded/public/' . $video['codec']['matches'][2];
  return video_filter_iframe($video);
}