You are here

function media_youtube_check_upload in Media: YouTube 6

Check the upload status of a video

Parameters

string $video_id: The video to check.

string $youtube_username: The youtube username owning the video to check.

string $youtube_password: The password of the youtube user.

Return value

array An associative array, keyed as follows: 'status' => The status returned from YouTube. 'message' => A message describing the video's status.

1 call to media_youtube_check_upload()
media_youtube_video_full_status in ./media_youtube.module

File

./media_youtube.module, line 491
Embedded Video Field provider file for YouTube.com.

Code

function media_youtube_check_upload($video_id, $youtube_username = NULL, $youtube_password = NULL) {
  module_load_include('inc', 'media_youtube', 'includes/media_youtube.api');
  return _media_youtube_check_upload($video_id, $youtube_username, $youtube_password);
}