How can I search inside a youtube playlist?

前端 未结 3 1433
余生分开走
余生分开走 2021-02-04 15:45

I need to know if youtube API V3 supports searching inside a specific youtube playlist? And is there any other way to do that?

3条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-04 16:11

    For doing full-text search in closed captions (CC) in a Youtube channel you may download all the subtitles from the channel and do local text search in it:

    $ youtube-dl --write-auto-sub --skip-download "https://www.youtube.com/channel/UC6oh54zIYKyW6hgBiZzLLsA"
    

    that will download about 160 .vtt text files

    $ grep -i -C 2 'autumn' *.vtt
    

    Note: Option --write-auto-sub should be used when author of videos didn't upload text. Otherwise use --write-sub.

提交回复
热议问题