테스트 사이트 - 개발 중인 베타 버전입니다

유튜브/비메오 ID로부터 비디오 썸네일 갖고오기 (youtube.lib.php)

· 8개월 전 · 626

[code]

<?php

if (!defined('_GNUBOARD_')) exit;

function get_youtube_id($contents)

{

    if(!$contents)

        return false;

preg_match('/(?:youtube(?:-nocookie)?\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|e(?:mbed)?)\/|shorts\/|\S*?[?&]v=)|youtu\.be\/)([a-zA-Z0-9_-]{11})/', $contents, $match); //all working included shorts and iframe

return $match[1] ?? false;

}

 

function get_youtube_thumbnail($youtube_id, $thumb_str="0"){

    if(!$youtube_id)

        return false;

 

    return "https://img.youtube.com/vi/".$youtube_id."/".$thumb_str.".jpg";

}

 

function get_vimeo_id($contents)

{

    if(!$contents)

        return false;

 

        $pattern = '/(?:https?:\/\/)?(?:www\.)?(?:player\.)?vimeo\.com\/(?:video\/|channels\/(?:\w+\/)?|groups\/(?:[^\/]*)\/videos\/|album\/(?:\d+)\/video\/|)(\d+)(?:[a-zA-Z0-9_-]+)?/i';

    preg_match($pattern, $contents, $match);

 

    return $match[1] ?? false;

 

function get_vimeo_thumbnail($id) {

    if (!$id) return false;

 

    $url = "https://vimeo.com/api/oembed.json?url=https://vimeo.com/" . $id;

   

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

   

    $response = curl_exec($ch);

    curl_close($ch);

   

    if ($response) {

        $data = json_decode($response);

        return $data->thumbnail_url ?? false;

    }

   

    return false;

}

[/code]

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
23798
23797
23792
23791
23785
23781
23770
23766
23764
23761
23747
23732
23724
23718
23706
23700
23697
23686
23682
23681
23680
23678
23665
23644
23643
23639
23637
23630
23626
23616