Flowplayer 本地视频
有没有办法从用户本地电脑中提取视频。
例如,该网站将托管在外部 www.example.com - 但是将访问该网站的电脑我们希望视频在本地运行。我目前正在尝试:
flowplayer("player", {src: 'file://C:/videos/flowplayer-3.2.7.swf', wmode: 'opaque'}, { plugins: { controls: { autoHide: 'always',
// which buttons are visible and which are not?
play:false,
volume:true,
mute:true,
time:false,
stop:false,
playlist:false,
fullscreen:true,
// scrubber is a well-known nickname for the timeline/playhead combination
scrubber: false
}}, clip:{ autoPlay: true, autoBuffering: true }, canvas: {backgroundColor: '#7790ac'}});
但不幸的是 - 不起作用。有什么想法吗?
Is there a way to pull in videos from the users local pc.
So for example the website will be hosted externall www.example.com - but the pc's that will be accessing the site we want the videos to run locally. I'm currently trying:
flowplayer("player", {src: 'file://C:/videos/flowplayer-3.2.7.swf', wmode: 'opaque'}, { plugins: { controls: { autoHide: 'always',
// which buttons are visible and which are not?
play:false,
volume:true,
mute:true,
time:false,
stop:false,
playlist:false,
fullscreen:true,
// scrubber is a well-known nickname for the timeline/playhead combination
scrubber: false
}}, clip:{ autoPlay: true, autoBuffering: true }, canvas: {backgroundColor: '#7790ac'}});
But unfortunatley - not working. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们最终在本地电脑上安装了 IIS 并调用 http://localhost url。
We've ended up installing IIS on the local pcs and calling a http://localhost url.