将视频上传到YouTube并使用Python中的YouTube Data API v3将其添加到播放列表

时间:2014-03-04 14:03:31

标签: python-2.7 youtube-api

我借助Example code中给出的示例编写了一个脚本,使用python中的YouTube Data API v3将视频上传到YouTube。

我写了另一个脚本,使用相同的YouTube Data API v3将上传的视频添加到播放列表中,您可以看到here

之后我编写了一个脚本来上传视频并将该视频添加到播放列表中。在那,我照顾身份验证和scops仍然我得到权限错误。这是我的新剧本

#!/usr/bin/python

import httplib
import httplib2
import os
import random
import sys
import time

from apiclient.discovery import build
from apiclient.errors import HttpError
from apiclient.http import MediaFileUpload
from oauth2client.file import Storage
from oauth2client.client import flow_from_clientsecrets
from oauth2client.tools import run

# Explicitly tell the underlying HTTP transport library not to retry, since
# we are handling retry logic ourselves.
httplib2.RETRIES = 1

# Maximum number of times to retry before giving up.
MAX_RETRIES = 10

# Always retry when these exceptions are raised.
RETRIABLE_EXCEPTIONS = (httplib2.HttpLib2Error, IOError, httplib.NotConnected,
  httplib.IncompleteRead, httplib.ImproperConnectionState,
  httplib.CannotSendRequest, httplib.CannotSendHeader,
  httplib.ResponseNotReady, httplib.BadStatusLine)

# Always retry when an apiclient.errors.HttpError with one of these status
# codes is raised.
RETRIABLE_STATUS_CODES = [500, 502, 503, 504]
CLIENT_SECRETS_FILE = "client_secrets.json"

# A limited OAuth 2 access scope that allows for uploading files, but not other
# types of account access.
YOUTUBE_UPLOAD_SCOPE = "https://www.googleapis.com/auth/youtube.upload"
YOUTUBE_API_SERVICE_NAME = "youtube"
YOUTUBE_API_VERSION = "v3"

# Helpful message to display if the CLIENT_SECRETS_FILE is missing.
MISSING_CLIENT_SECRETS_MESSAGE = """
WARNING: Please configure OAuth 2.0

To make this sample run you will need to populate the client_secrets.json file
found at:

   %s

with information from the APIs Console
https://code.google.com/apis/console#access

For more information about the client_secrets.json file format, please visit:
https://developers.google.com/api-client-library/python/guide/aaa_client_secrets
""" % os.path.abspath(os.path.join(os.path.dirname(__file__),
                                   CLIENT_SECRETS_FILE))

def get_authenticated_service():
  flow = flow_from_clientsecrets(CLIENT_SECRETS_FILE, scope=YOUTUBE_UPLOAD_SCOPE,
    message=MISSING_CLIENT_SECRETS_MESSAGE)

  storage = Storage("%s-oauth2.json" % sys.argv[0])
  credentials = storage.get()

  if credentials is None or credentials.invalid:
    credentials = run(flow, storage)

  return build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION,
    http=credentials.authorize(httplib2.Http()))


def initialize_upload(title,description,keywords,privacyStatus,file):
  youtube = get_authenticated_service()

  tags = None
  if keywords:
    tags = keywords.split(",")

  insert_request = youtube.videos().insert(
    part="snippet,status",
    body=dict(
      snippet=dict(
        title=title,
        description=description,
        tags=tags,
        categoryId='26'
      ),
      status=dict(
        privacyStatus=privacyStatus
      )
    ),
    # chunksize=-1 means that the entire file will be uploaded in a single
    # HTTP request. (If the upload fails, it will still be retried where it
    # left off.) This is usually a best practice, but if you're using Python
    # older than 2.6 or if you're running on App Engine, you should set the
    # chunksize to something like 1024 * 1024 (1 megabyte).
    media_body=MediaFileUpload(file, chunksize=-1, resumable=True)
  )

  vid=resumable_upload(insert_request)

  #Here I added lines to add video to playlist
  #add_video_to_playlist(youtube,vid,"PL2JW1S4IMwYubm06iDKfDsmWVB-J8funQ")
  #youtube = get_authenticated_service()
  add_video_request=youtube.playlistItems().insert(
        part="snippet",
        body={
                'snippet': {
                  'playlistId': "PL2JW1S4IMwYubm06iDKfDsmWVB-J8funQ", 
                  'resourceId': {
                          'kind': 'youtube#video',
                      'videoId': vid
                    }
                #'position': 0
                }
        }
    ).execute()


def resumable_upload(insert_request):
  response = None
  error = None
  retry = 0
  vid=None
  while response is None:
    try:
      print "Uploading file..."
      status, response = insert_request.next_chunk()
      if 'id' in response:
        print "'%s' (video id: %s) was successfully uploaded." % (
          title, response['id'])
    vid=response['id']
      else:
        exit("The upload failed with an unexpected response: %s" % response)
    except HttpError, e:
      if e.resp.status in RETRIABLE_STATUS_CODES:
        error = "A retriable HTTP error %d occurred:\n%s" % (e.resp.status,
                                                             e.content)
      else:
        raise
    except RETRIABLE_EXCEPTIONS, e:
      error = "A retriable error occurred: %s" % e

    if error is not None:
      print error
      retry += 1
      if retry > MAX_RETRIES:
        exit("No longer attempting to retry.")

      max_sleep = 2 ** retry
      sleep_seconds = random.random() * max_sleep
      print "Sleeping %f seconds and then retrying..." % sleep_seconds
      time.sleep(sleep_seconds)
  return vid  

if __name__ == '__main__':

  title="sample title"
  description="sample description"

  keywords="keyword1,keyword2,keyword3"

  privacyStatus="public"
  file="myfile.mp4"
  vid=initialize_upload(title,description,keywords,privacyStatus,file)
  print 'video ID is :',vid

我无法弄清楚出了什么问题。我得到了许可错误。这两个脚本独立工作。

任何人都可以帮我弄清楚我错在哪里或者如何实现上传视频和添加太多的播放列表。

1 个答案:

答案 0 :(得分:0)

我得到的答案实际上在两个独立的脚本范围是不同的 上传范围是" https://www.googleapis.com/auth/youtube.upload"
添加到播放列表的范围是" https://www.googleapis.com/auth/youtube"

因为范围不同所以我必须单独处理身份验证。