我正在尝试允许用户仅通过提供网址在我的网站上发布视频。现在我只需要解析URL并获取ID,然后将该ID插入到他们给定的“嵌入”代码并将其放在页面上,就可以允许YouTube视频。
这限制了我仅限YouTube视频,但我想要做的是类似于facebook的内容,您可以将YouTube直接放入YouTube“分享”网址或网页的网址,或任何其他视频网址,以及它将视频加载到播放器中。
知道他们是怎么做到的吗?或任何其他类似的方式只显示一个基于URL的视频?请注意,youtube视频(可能最受欢迎)不会提供视频网址,而是提供YouTube网页上视频的网址(这就是为什么只需要ID就可以使用嵌入代码的原因)。
希望这是有道理的,我希望有人能给我一些关于在哪里看的建议!
谢谢你们。
答案 0 :(得分:3)
我建议添加对OpenGraph attributes的支持,这在内容服务中很常见,这些服务可以帮助其他网站嵌入其内容。页面上的信息将包含在<meta>
标记中,这意味着您必须通过HtmlAgilityPack之类的内容加载网址:
var doc = new HtmlDocument();
doc.Load(webClient.OpenRead(url)); // not exactly production quality
var openGraph = new Dictionary<string, string>();
foreach (var meta in doc.DocumentNode.SelectNodes("//meta"))
{
var property = meta["property"];
var content = meta["content"];
if (property != null && property.Value.StartsWith("og:"))
{
openGraph[property.Value]
= content != null ? content.Value : String.Empty;
}
}
// Supported by: YouTube, Vimeo, CollegeHumor, etc
if (openGraph.ContainsKey("og:video"))
{
// 1. Get the MIME Type
string mime;
if (!openGraph.TryGetValue("og:video:type", out mime))
{
mime = "application/x-shockwave-flash"; // should error
}
// 2. Get width/height
string _w, _h;
if (!openGraph.TryGetValue("og:video:width", out _w)
|| !openGraph.TryGetValue("og:video:height", out _h))
{
_w = _h = "300"; // probably an error :)
}
int w = Int32.Parse(_w), h = Int32.Parse(_h);
Console.WriteLine(
"<embed src=\"{0}\" type=\"{1}\" width=\"{2}\" height=\"{3}\" />",
openGraph["og:video"],
mime,
w,
h);
}