You are here

function video_filter_ted in Video Filter 7.3

Callback for Ted.com codec.

See also

video_filter_codec_info()

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

File

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

Code

function video_filter_ted($video) {
  $video['source'] = '//embed.ted.com/talks/' . $video['codec']['matches'][3] . '.html';
  return video_filter_iframe($video);
}