网页调用播放器
#314
Replies: 1 comment
-
如果需要添加不同网站支持,按照上面的逻辑获取视频实际播放链接,传递给播放器即可 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
程序提供了js调用播放器的能力,桌面端支持es6语法,安卓平台不支持es6,需要转换成es5,下面是桌面端在某网站调用本地播放器的es6脚本
桌面端直接使用上面代码即可,这段代码只支持某个网站
在移动端,需要把
window.chrome.webview
替换成window.bridge
,并转换成es5.比如es6的内容为:
然后在babel的网站里面转换成es5,也可以在这个网站转换: https://jstool.gitlab.io/zh-cn/babel-es6-to-es5/
得到
粘贴到注入菜单即可,默认主页需要在设置里面配置
Beta Was this translation helpful? Give feedback.
All reactions