You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
301 B
8 lines
301 B
from youtube_transcript_api import YouTubeTranscriptApi
|
|
#zh-Hant
|
|
url = "https://www.youtube.com/watch?v=rhj42pLWa5s"
|
|
list = YouTubeTranscriptApi.list_transcripts("jtr9VBwwJ7M")
|
|
videoSrt = YouTubeTranscriptApi.get_transcript(
|
|
"KWlTphpCpcI", languages=['hi'])
|
|
print(list)
|
|
print(videoSrt)
|