如何检查 Vimeo 视频是否存在?

发布于 2024-09-27 02:16:04 字数 470 浏览 3 评论 0原文

目前,我有一个基于 vimeo ID 构建 vimeo 播放器的功能

function create_video_player_by_ID($video_id){
    $player = '<iframe src="http://player.vimeo.com/video/';
    $player .= $video_id.'" ';
    $player .= 'width="'.$this->width.'" ';
    $player .= 'height="'.$this->height.'" ';
    $player .=  'frameborder="0"></iframe>';



    return $player;
}

目前,我在播放器窗口中收到一个 vimeo 应用程序,因为 ID 无效,但我想用它做更多事情。如何在视频播放器之前返回布尔值,以便我可以做其他失败的事情?

Currently, I have a function that builds a vimeo player based on a vimeo ID

function create_video_player_by_ID($video_id){
    $player = '<iframe src="http://player.vimeo.com/video/';
    $player .= $video_id.'" ';
    $player .= 'width="'.$this->width.'" ';
    $player .= 'height="'.$this->height.'" ';
    $player .=  'frameborder="0"></iframe>';



    return $player;
}

Currently, I get a vimeo appology in the player window is the ID is invalid, but I would like to do more with that. How can I get a boolean to return before the video player, so I can do something else an failure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

枯叶蝶 2024-10-04 02:16:04

您可以使用视频 URL 来使用 HEAD 请求方法。

function check_remote_video_exists($video_url) {

    $headers = @get_headers($video_url);

    return (strpos($headers[0], '200') > 0) ? true : false;
}

像这样检查你的 vimeo URL:

if (check_remote_video_exists('YOUR_VIMEO_VIDEO_URL')) {

    // video exists, do stuff

} else {

    // video does not exist, do other stuff

}

希望这对某人有帮助。

You can use the HEAD request method using the video URL.

function check_remote_video_exists($video_url) {

    $headers = @get_headers($video_url);

    return (strpos($headers[0], '200') > 0) ? true : false;
}

Check your vimeo URL like so:

if (check_remote_video_exists('YOUR_VIMEO_VIDEO_URL')) {

    // video exists, do stuff

} else {

    // video does not exist, do other stuff

}

Hope this helps someone.

夜深人未静 2024-10-04 02:16:04

尝试对 src URL 执行 HEAD 请求,以确保它返回状态 200 而不是 404。

您还可以使用视频 API 来获取有关创意的信息。请参阅他们的文档

Try doing a HEAD request on the src URL to make sure it returns status 200 instead of 404.

You can also use the video API to get information about an idea. See their docs.

又怨 2024-10-04 02:16:04

出于嵌入目的,最好的方法是使用视频 URL 调用 oEmbed。如果视频无法嵌入,它将返回非 200 代码。

Vimeo oEmbed 文档

For embedding purposes, the best approach would be to make a call to oEmbed with the video url. It will return a non-200 code if the video cannot be embedded.

Vimeo oEmbed docs

ゝ杯具 2024-10-04 02:16:04

在文档中,明确提到了如何从Vimeo获取视频。您需要点击带有视频 ID 的 URL,如果视频退出,则响应代码为 200,否则如果视频不存在,则会给出 404 响应。
参见此处

https://developer.vimeo.com/api/reference/videos#get_video

In the documentation, it clearly mentioned that how can we get a video from Vimeo. You need to hit an URL with video id if the video exit then the response code is 200 otherwise if video does not exist then it will give 404 response.
See here

https://developer.vimeo.com/api/reference/videos#get_video

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文