當前位置: 首頁>>代碼示例>>Python>>正文


Python DataObjects.VideoHostingInfo類代碼示例

本文整理匯總了Python中common.DataObjects.VideoHostingInfo的典型用法代碼示例。如果您正苦於以下問題:Python VideoHostingInfo類的具體用法?Python VideoHostingInfo怎麽用?Python VideoHostingInfo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VideoHostingInfo類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image(
        "http://oakhill.newton.k12.ma.us/sites/oakhill.newton.k12.ma.us/files/users/3/google_docs_image.png"
    )
    video_hosting_info.set_video_hosting_name(VIDEO_HOSTING_NAME)
    return video_hosting_info
開發者ID:noba3,項目名稱:KoTos,代碼行數:7,代碼來源:GoogleDocs.py

示例2: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image(
        "http://s2.wp.com/wp-content/themes/a8c/videopress4/img/logo-footer.png?m=1340912836g"
    )
    video_hosting_info.set_video_hosting_name("VideoPress")
    return video_hosting_info
開發者ID:noba3,項目名稱:KoTos,代碼行數:7,代碼來源:VideoPress.py

示例3: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image('http://www.koreaittimes.com/images/imagecache/medium/facebook-video-player-logo.png')
    video_hosting_info.set_video_hosting_name('Facebook')
    return video_hosting_info
開發者ID:ak0ng,項目名稱:dk-xbmc-repaddon-rep,代碼行數:5,代碼來源:Facebook.py

示例4: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image('')
    video_hosting_info.set_video_hosting_name('SoundCloud')
    return video_hosting_info
開發者ID:jigarsavla,項目名稱:apple-tv2-xbmc,代碼行數:5,代碼來源:SoundCloud.py

示例5: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image('http://www.mediaplaybox.com/administration/fckeditor/uploaded_files/mslogo.png')
    video_hosting_info.set_video_hosting_name(VIDEO_HOSTING_NAME)
    return video_hosting_info
開發者ID:jigarsavla,項目名稱:apple-tv2-xbmc,代碼行數:5,代碼來源:MediaPlayBox.py

示例6: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image('')
    video_hosting_info.set_video_hosting_name(VIDEO_HOSTING_NAME)
    return video_hosting_info
開發者ID:jigarsavla,項目名稱:apple-tv2-xbmc,代碼行數:5,代碼來源:STVFlicks.py

示例7: getVideoHostingInfo

def getVideoHostingInfo():
    video_hosting_info = VideoHostingInfo()
    video_hosting_info.set_video_hosting_image("")
    video_hosting_info.set_video_hosting_name("Vioku")
    return video_hosting_info
開發者ID:wljcom,項目名稱:dkodi,代碼行數:5,代碼來源:Vioku.py


注:本文中的common.DataObjects.VideoHostingInfo類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。