媒体播放器 URL 选项

发布于 2024-07-13 13:51:11 字数 267 浏览 5 评论 0原文

在线打开视频时有没有办法通过 URL 传递开始时间? 例如:

http://www.example.com/newvideo.wmv?starttime=00:33:34.0

我见过使用 Javascript 或制作 ASX 文件的不同方法,以便对其进行一些控制,但我只需要在开始播放时跳转到文件中的某个时间。 这些视频很长,我的目标是制作一个目录,人们只需单击他们想要查看的部分旁边的链接,这就是视频开始的地方。

谢谢!

Is there a way to pass a start time via URL when opening a video online?
For example:

http://www.example.com/newvideo.wmv?starttime=00:33:34.0

I've seen different methods for using Javascript or making ASX files in order to give some control over it but I just need to jump to a certain time in the file when it starts playing. The videos are long and my goal is to make a table of contents where someone can just click a link next to the section they want to view and that's where the video begins.

Thanks!

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

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

发布评论

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

评论(2

别念他 2024-07-20 13:51:11

据我所知,这是不可能的,这似乎表明事实确实如此......

For as far as I know this is not possible and this seems to suggest that this is indeed the case....

嘿哥们儿 2024-07-20 13:51:11

IE还有另一种语言称为“时间”
页面需要像VML一样在样式标签中编写一些声明
但与原始的 Windows Media Player 相比,您可以使用非常简单的控件来设计自己的风格。

您可以使用 javascipt 编写页面,而不是指向 http url 的链接,
播放器标签是这样的

>

你需要使用的方法---- bMedia.seekActiveTime(x); //定位元素活动时间轴上的指定点并从该点开始播放。

在此处了解更多信息 MSDN

Windows Media Player 是在这些脚本上运行的程序

IE has another language referred to as "time"
The page needs to be written with some declarations in the style tag just like VML
But very simple with controls you can style yourself, rather than the raw Windows Media Player.

Instead of a link to http url you could write the page with javascipt,
the player tag is like this

<t:media id="bMedia" volume=50 timeAction="visibility" src="xva.wmv" onend="doSomething()" onmediacomplete="doSomethingElse()" />

The method you need to use---- bMedia.seekActiveTime(x); //Locates a specified point on the element's active timeline and begins playing from that point.

learn more here MSDN

Windows Media Player is the program running on these scripts

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