You are here

function emvideo_ustream_preview in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/providers/ustream.inc \emvideo_ustream_preview()

hook emvideo_PROVIDER_video this actually displays the preview-sized video we want, commonly for the teaser

Parameters

$embed: the video code for the video to embed @param $width the width to display the video @param $height the height to display the video @param $field the field info from the requesting node @param $item the actual content from the field @return the html of the embedded video

File

contrib/emvideo/providers/ustream.inc, line 211

Code

function emvideo_ustream_preview($embed, $width, $height, $field, $item, $autoplay, $options = array()) {
  $output = theme('emvideo_ustream_flash', $embed, $width, $height, $autoplay, $options);
  return $output;
}