hnakano
hnakano
The cause appears to be pytube.https://github.com/pytube/pytube/issues/1586 You need modify `yt = YouTube(f"https://www.youtube.com/watch?v={self.video_id}")` to `yt = YouTube(f"https://www.youtube.com/watch?v={self.video_id}", use_oauth=True, allow_oauth_cache=True)` But, this requires browser authentication.
@shawnesquivel It looks like there are no English subtitles. If you want to get non-English subtitles, you can do it by specifying them in from_youtube_url. ``` loader = YoutubeLoader.from_youtube_url('https://www.youtube.com/watch?v=xxxxx', language='ja')...