将视频上传到Google Colab上的Youtube

时间:2019-05-06 14:31:19

标签: python youtube upload google-colaboratory

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

1 个答案:

答案 0 :(得分:0)

尝试

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>')

我不确定“上传”是什么意思,但是以上两种方式将视频嵌入this question提供的colab中。