Get title from YouTube videos

前端 未结 17 1948
抹茶落季
抹茶落季 2020-12-07 17:30

I want to extract the Title of YouTube\'s videos. How can I do this?

Thanks.

17条回答
  •  庸人自扰
    2020-12-07 17:38

    Easiest way to obtain information about a youtube video afaik is to parse the string retrieved from: http://youtube.com/get_video_info?video_id=XXXXXXXX

    Using something like PHP's parse_str(), you can obtain a nice array of nearly anything about the video:

    $content = file_get_contents("http://youtube.com/get_video_info?video_id=".$id);
    parse_str($content, $ytarr);
    echo $ytarr['title'];
    

    That will print the title for the video using $id as the video's id.

提交回复
热议问题