【问题标题】:Upload videos to Youtube on Google Colab在 Google Colab 上将视频上传到 Youtube
【发布时间】:2019-09-24 05:04:35
【问题描述】:

在 Google Colab 上使用 Google 云端硬盘变得很容易。 但我没有在 Google Colab 上找到任何简化的上传到 Youtube 的方法。 我尝试了Youtube-Upload 的代码,但没有成功。有什么建议吗?

【问题讨论】:

    标签: python youtube upload google-colaboratory


    【解决方案1】:

    试试这个

    from IPython.display import YouTubeVideo
    YouTubeVideo('ZDa-Z5JzLYM')
    

    或者这个

    from IPython.display import HTML
    HTML('<iframe width="1280" height="720" src="https://www.youtube.com/watch?v=ZDa-Z5JzLYM&list=PL-osiE80TeTsqhIuOqKhwlXsIBIdSeYtc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>')
    

    我不确定您所说的“上传”是什么意思,但上述两种方法是将视频嵌入到 colab 中,由 this question 提供。

    【讨论】: