1.申請(qǐng)插件
注意:個(gè)人開(kāi)發(fā)者無(wú)法使用
登錄微信公眾平臺(tái)愧膀,在你的小程序后臺(tái)的設(shè)置-第三方服務(wù)—插件管理,搜索插件并點(diǎn)擊添加谣光。
添加成功之后檩淋,點(diǎn)擊詳情,查看該插件的具體信息萄金。
拿到該插件的appid以及版本號(hào)狼钮。
github地址:https://github.com/tvfe/txv-miniprogram-plugin
2.使用步驟
微信小程序:
小程序的app.json里聲明使用插件
"plugins": {
"tencentvideo": {
"version": "2.0.5",
"provider": "wxa75efa648b60994b"
}
}碳柱,
在使用插件的頁(yè)面的js文件里
const txvContext = requirePlugin("tencentvideo");
使用插件的自定義組件,在json中定義需要引入的自定義組件熬芜。使用plugin://協(xié)議
"usingComponents": {
"txv-video": "plugin://tencentvideo/video"
}
頁(yè)面中使用
<txv-video vid="xxxxxxxx" playerid="txv1"></txv-video>
暫停方法:
this.txvContext = txvContext.getTxvContext('txv1');
this.txvContext.pause()
uniapp:
manifest.json添加:
"mp-weixin" : {
"appid" : "",
"setting" : {
"urlCheck" : false
},
"usingComponents" : true,
"plugins": {
"tencentvideo": {
"version": "2.0.5",
"provider": "wxa75efa648b60994b"
}
}
},
在page.json中的對(duì)應(yīng)頁(yè)面的 style中添加
"usingComponents": {
// #ifdef MP-WEIXIN
"txv-video": "plugin://tencentvideo/video"
// #endif
}
頁(yè)面實(shí)現(xiàn):
<txv-video vid="xxxxxx" playerid="txv1"></txv-video>
3.如何獲取vid
https://v.qq.com/x/page/n0041aa087e.html
n0041aa087e即為vid。