如何获取 facebook 视频的原始尺寸(宽度和高度)以及如何获取 fql.video src_hq?
我尝试使用 facebook fql.video 从我的偶像墙上获取视频,那么,如何获取视频的原始尺寸(宽度和高度)?
我注意到 fql
表中有一个名为 src_hq
的字段,其描述为:高质量版本视频的源文件的 URL。
但是当我直接在浏览器中尝试时。它警告:
需要授权
此服务器无法验证您是否有权访问 您要求的文件。您提供了错误的凭据 (例如,密码错误),或者您的浏览器不理解如何提供 所需的凭据。
所以我的另一个问题是如何使用src_hq
播放视频?
谢谢和问候。
I tried to use facebook fql.video get video from my Idol's wall, then, how to get the video's original size(width & height)?
And I noticed one field named src_hq
in fql
table, in its description: The URL to the source file for the high quality version of the video.
but when I tried it in the browser directly. it warning:
Authorization Required
This server could not verify that you are authorized to access the
document you requested. Either you supplied the wrong credentials
(e.g., bad password), or your browser doesn't understand how to supply
the credentials required.
So my another question is how to play video with the src_hq
?
Thanks and regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个 Facebook 页面是最好的资源。单击“尝试此查询",它输出示例 fql 查询(注意:不使用 fbapp.Fql(query)。记下
&access_token=.....附加到查询的 XML 输出包含:您可以使用的
。访问问题,不是播放问题。您的 Facebook 上可以观看正常视频吗?通常如果有高质量视频,就会有一个 [HQ] 框,请参阅示例 视频。
This Facebook page is the best resource. Click on "Try this query" which outputs a sample fql query (note: doesn't use fbapp.Fql(query). Take note of the
&access_token=.....
appended to the query. The XML output contains:<object width="400" height="224" >
that you can use.src_hq
is an access problem, not a playback issue. Can the normal video be viewed on your Facebook? Usually if a high quality video is available, there is a box for [HQ], see sample video.使用 FQL 表
video
中的字段format
获取视频宽度/高度:Use field
format
from FQL tablevideo
to get video width/height: