You are here

function video_cck_livestream_video in Embedded Media Field 5

hook video_cck_PROVIDER_video this actually displays the full/normal-sized video we want, usually on the default page view

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/video_cck/providers/livestream.inc, line 329
This include processes livestream.com media files for use by emfield.module.

Code

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