APICloud开发者进阶之路|[ 模块教程 ] touping模块demo示例

2021-03-10 04:27

阅读:368

YPE HTML>

标签:parse   har   支持   快速   ==   ping   click   功能   ble   

touping模块实现局域网内基于DLNA的视频投屏功能,并支持搜索设备,投屏播放,调节播放进度,调节音量,退出投屏等功能。

AUI快速完成布局
请点击底部“搜索设备”按钮,进行可投屏设备搜索
    音量
    进度
    搜索设备
    视频投屏
    切换视频
    退出投屏
    ‘; item += ‘‘; $api.byId(‘deviceList‘).insertAdjacentHTML(‘beforeEnd‘, item); } } function choiceDevice(name, index) { deviceIndex = index; document.getElementById("tips").textContent = "您选择了 " + name + " 进行投屏"; } function play() { touping.play({ index: deviceIndex, url: "http://wvideo.spriteapp.cn/video/2016/0328/56f8ec01d9bfe_wpd.mp4" }, function(ret, err) { alert(JSON.stringify(ret)); }); } function playUrl() { touping.playUrl({ url: "http://file.qiushiriji.com/file/video/2019-08-13/172/1565702535263.mp4" }, function(ret, err) { alert(JSON.stringify(ret)); }); } function stop() { touping.stop(function(ret, err) { alert(JSON.stringify(ret)); }); } function volume(value) { touping.volume({ value: value }, function(ret, err) { console.log(JSON.stringify(ret)); }); } function seek(value) { touping.seek({ value: value }, function(ret, err) { console.log(JSON.stringify(ret)); }); } var range1 = new auiRange({ element: document.getElementById("rangeVolume") //滑块容器 }, function(ret) { volume(ret.value); }) var range2 = new auiRange({ element: document.getElementById("rangeSeek") //滑块容器 }, function(ret) { seek(ret.value); }) 复制代码

      

    APICloud开发者进阶之路|[ 模块教程 ] touping模块demo示例

    标签:parse   har   支持   快速   ==   ping   click   功能   ble   

    原文地址:https://www.cnblogs.com/APICloud/p/12721142.html


    评论


    亲,登录后才可以留言!