Youtube视频下载脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Youtube视频下载脚本相关的知识,希望对你有一定的参考价值。
Extracts the video title & download URL from a youtube page and starts a download.if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$url = (isset($_POST['url']) && !empty($_POST['url'])) ?
$_POST['url'] : false; if (!$url) {
echo "Please enter a URL.";
} else {
// Extract video title.
$vTitle_results_1 = explode('<title>', $source); $vTitle_results_2 = explode('</title>', $vTitle_results_1[1]);
// Extract video download URL.
$dURL_results_1 = explode('url_encoded_fmt_stream_map": "url=', $source); $dURL_results_2 = explode('u0026quality', $dURL_results_1[1]);
// Force download of video.
header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename=$file"); header("Content-Type: video/webm"); header("Content-Transfer-Encoding: binary");
}
}
?>
<form method="post">
<label for="url">URL:</label>
<input type="text" name="url" value="" id="url">
<input type="submit" name="submit" value="Download">
</form>
以上是关于Youtube视频下载脚本的主要内容,如果未能解决你的问题,请参考以下文章
如何获取内容脚本以单击YouTube视频的LIKE按钮?
在 Google Apps 脚本中列出 YouTube 频道的所有视频
如何在 JSON 中为 v3 YouTube API 上传构建片段和状态
Youtube 视频的交互式脚本
PHP Youtube视频下载脚本
Youtube视频下载脚本