列出带有单词的视频



如您所知,YouTube具有一个带有软编码的视频字幕的属性。通过单击cc,可以看到。还有一个网站帮助一个人学习英语单词的发音,www.youglish.com

该网站搜索字幕的字幕一个给定的单词,并带有"说"一词。也就是说,它可以通过字幕搜索视频。这样做的方式/方法/步骤是什么?此外,IBM的工作类似于

您可以使用search.list进行请求视频:

  • closed caption
  • 与搜索词匹配。

在此示例中,这是启用closecaptionsearch.list请求,并与搜索词(迷人)

匹配。
https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=4&q=charming&type=video&videoCaption=closedCaption&fields=items(id(channelId%2Ckind%2CvideoId)%2Ckind%2Csnippet(channelTitle%2Cdescription%2Ctitle))&key={YOUR_API_KEY}

Google API Explorer中可用的演示:

这些是结果:

{
 "items": [
  {
   "kind": "youtube#searchResult",
   "id": {
    "kind": "youtube#video",
    "videoId": "ztsbgEUzVpc"
   },
   "snippet": {
    "title": "CHARMING Official Trailer (2018) Demi Lovato, Sia, Animation Movie HD",
    "description": "CHARMING Official Trailer © 2018 - Smith Global Media Comedy, Kids, Family and Animated Film, Blockbuster, Action Cinema, Blockbuster, Scifi Movie or ...",
    "channelTitle": "ONE Media"
   }
  },
  {
   "kind": "youtube#searchResult",
   "id": {
    "kind": "youtube#video",
    "videoId": "sO5F8DulPPk"
   },
   "snippet": {
    "title": "How to be more Charismatic - 6 Charisma Tips to be more Charming and Attractive",
    "description": "Use my FREE 27 Confidence-Boosting Hacks: https://practicalpie.com/confidence/ Want my TOP 10 book list?: https://practicalpie.com/book-list/ Get a girl to like ...",
    "channelTitle": "Practical Psychology"
   }
  },
  {
   "kind": "youtube#searchResult",
   "id": {
    "kind": "youtube#video",
    "videoId": "gesBAZo2_l4"
   },
   "snippet": {
    "title": "9 Tricks to Be the Most Charming Person in the Room",
    "description": "How to be a bit more charming? Some people could easily gain the trust of everyone and create a positive image of themselves? Jeff Haden, one of the most ...",
    "channelTitle": "BRIGHT SIDE"
   }
  },
  {
   "kind": "youtube#searchResult",
   "id": {
    "kind": "youtube#video",
    "videoId": "wMVPU3uUc5g"
   },
   "snippet": {
    "title": "10 Signs You Are An Exceptionally Charming Person",
    "description": "If you have these signs you are an exceptionally charming person – even if you don't think you are! Charm is the power or quality of delighting, attracting or ...",
    "channelTitle": "BRAINY DOSE"
   }
  }
 ]
}

不幸的是,并非所有返回的视频都具有(在is captions)给定单词 - 在这种情况下,单词:迷人

因此,您必须循环search.list响应中返回的视频,然后选择一个确实具有给定单词的视频。

接下来,您可以通过videoId获取标题:

您可以使用此URL获取标题:

https://video.google.com/timedtext?type=track&v=<VIDEO_ID>&id=0&lang=en

通过修改URL并添加videoId的工作JSFIDDLE检索字幕。

相关内容

  • 没有找到相关文章

最新更新