You are here

function emvideo_bliptv_request in Embedded Media Field 6

1 call to emvideo_bliptv_request()
emvideo_bliptv_data in contrib/emvideo/providers/bliptv.inc

File

contrib/emvideo/providers/bliptv.inc, line 176
This include processes blip.tv media files for use by emfield.module.

Code

function emvideo_bliptv_request($code, $cacheable = TRUE, $skin = 'rss', $show = FALSE) {
  $args = array();
  $file = $show ? "http://{$code}.blip.tv/file/?skin=" . $skin : "http://blip.tv/file/{$code}?skin=" . $skin;
  return module_invoke('emfield', 'request_xml', 'bliptv', $file, $args, $cacheable, FALSE, $code . ':' . $skin . ($show ? ':show' : ':post'));
}