google colaboratry を利用して、YouTubeの動画をgoogleドライブ上にダウンロードしたいのですが、うまくいきません。最後のstream.download(VIDEO_DIRECTORY)のところで、エラーが出てしまいます。何回も見直してのですが、間違いの箇所が見つけることができないです。ドライブ上に保存するためのパスの指定方法を教えてください。
python
1!pip install pytube3==9.6.4 --upgrade 2from pytube import YouTube 3video_url =" https://www.youtube.com/watch?v=FcXt2GUMXEI" 4yt = YouTube(video_url) 5fps = 30 6resolution = '720p' 7 8yt.streams.filter(fps=fps, resolution=resolution).all() 9 10stream = yt.streams.get_by_itag(22) 11 12from google.colab import drive 13drive.mount('/content/drive') 14 15VIDEO_DIRECTORY = "/content/drive/My Drive/Colab Notebooks/youtube/001" 16stream.download(VIDEO_DIRECTORY)
OSError: [Errno 22] Invalid argument:
あなたの回答
tips
プレビュー