我是新用户jwplayer。我有一个 真实视频链接 http://domain.com/share/upload/test.mp4
播放视频使用jwplayer,我使用功能
jwplayer('player3').setup({
file:"http://localhost:8080/video/test.mp4"
})
但我希望将jwplay中的重定向url文件转换为url
http://domain.com/share/upload/test.mp4
我一直在使用.htaccess
RewriteRule ^video/(.*)$ http://domain.com/share/upload/$1 [L]
但我无法播放视频。我需要一个解决方案
答案 0 :(得分:0)
如果要重定向该文件,请尝试此操作。
变化:
file:"http://localhost:8080/video/test.mp4"
要:
file:"http://localhost:8080/video/test.mp4",
type: "mp4"
这有用吗?