function emvideo_bliptv_info in Embedded Media Field 6
File
- contrib/
emvideo/ providers/ bliptv.inc, line 19 - This include processes blip.tv media files for use by emfield.module.
Code
function emvideo_bliptv_info() {
$features = array(
array(
t('Autoplay'),
t('Yes'),
'',
),
array(
t('RSS attachment'),
t('Yes'),
t('When displaying in an RSS feed, these videos will be attached to the feed. (The feed reader or aggregator must support enclosure tags.)'),
),
array(
t('Thumbnails'),
t('Yes'),
'',
),
);
return array(
'provider' => 'bliptv',
'name' => t('Blip.tv'),
'url' => EMVIDEO_BLIPTV_MAIN_URL,
'settings_description' => t('These settings specifically affect videos displayed from <a href="@provider" target="_blank">Blip.tv</a>.', array(
'@provider' => EMVIDEO_BLIPTV_MAIN_URL,
)),
'supported_features' => $features,
);
}