admin管理员组文章数量:1345418
I am making a bilingual app to learn English. I will insert a youtube video into the app, and show subtitles below. Is there any way I can get the captions directly from the youtube video player and display it separately?
I see some current apps that are doing that as well. Don't know how they did? Or do I have to manually get the subtitles from each video then save them to the database, then process and display them? But the amount of data will be huge, with tens of millions of videos, and each video has dozens of subtitles in different languages.
I searched a lot but didn't find anyone answering this. There are posts from many years ago that also have no answers. Does anyone have any ideas? Thank you.
I am making a bilingual app to learn English. I will insert a youtube video into the app, and show subtitles below. Is there any way I can get the captions directly from the youtube video player and display it separately?
I see some current apps that are doing that as well. Don't know how they did? Or do I have to manually get the subtitles from each video then save them to the database, then process and display them? But the amount of data will be huge, with tens of millions of videos, and each video has dozens of subtitles in different languages.
I searched a lot but didn't find anyone answering this. There are posts from many years ago that also have no answers. Does anyone have any ideas? Thank you.
Share Improve this question asked Sep 27, 2022 at 7:13 Nam LeeNam Lee 1,1172 gold badges13 silver badges22 bronze badges 1- find a good solution? – aehlke Commented Mar 29, 2024 at 16:23
3 Answers
Reset to default 8After a lot of searching I finally found the solution.
You have to GET the whole page first from the video url (e.g. https://www.youtube./watch?v=someID
) and then from inside the whole resposne, search for a url like this: https://www.youtube./api/timedtext?...
It contains the temporary signature and everything else you need to download the transcript. (DISCLAIMER: haven't tested if the signature expires --> EDIT: it expires in approx. 24h)
After that you just need to extract that whole url - I used Regex - and decode it using decodeURI() method to escape all Unicode characters :)
It should return something like:
You should check the youtube api to get captions :https://developers.google./youtube/v3/docs/captions/list?apix_params=%7B%22part%22%3A%22snippet%22%2C%22videoId%22%3A%22PRU2ShMzQRg%22%7D
From there you can have separately captions and video
You can use the Youtube API for this:
- First retrieve the list of captions using https://developers.google./youtube/v3/docs/captions/list
- Download the caption from https://developers.google./youtube/v3/docs/captions/download
Then you can have access to controls for a media player (and the current time) to display the correct subtitle: see HTMLMediaElement API for this.
本文标签: javascriptHow can I get captions of a youtube video and display it separatelyStack Overflow
版权声明:本文标题:javascript - How can I get captions of a youtube video and display it separately? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743764317a2534959.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论