我在html页面上有一个jwplayer,可以从cdn网络或直接网址加载视频。但是,我希望使用本地(硬盘)存储的视频加载到网页上。我了解浏览器中不允许加载本地资源。我正在寻找一个解决这个问题的方法。
这是我尝试使用本地存储的视频文件的代码。
jwplayer("video-player").setup({
file: "file:///F:/video-file-name.mp4",
image: "file:///F:/video-thumbnail.jpg",
width: "100%",
height: "100%",
abouttext: "about text",
aboutlink: "",
logo: {
file: "http://google-com/vid_logo.png"
},
autostart: true,
primary: "flash",
startparam: "start"
}
});
我也在路径的开头用file://尝试了它,但它不起作用。
任何帮助都将受到高度赞赏。
谢谢