🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### **获取播放信息** ~~~ streamPlayer.getInfo(); ~~~ ### 接口说明: 调用该接口后,将获取包含当前播放所有信息的Json字符串。 ### 返回值: ~~~ { "audiobitrate" : 1, "audiocodec" : 13, "audioduration" : 8066, "bitspersample" : 16, "channels" : 2, "errorcode" : 0, "filebitrate" : 173, "fileduration" : 8334, "filename" : "11-45-46-981_lgh_44.mp4", // 媒体播放的文件名 "fps" : 15, "height" : 240, "playspeed" : 1, "playstatus" : 3, // 1:播放中 2:播放暂停 3:播放停止 "playtime" : 1614, // 当前播放时间(毫秒) "samplespersec" : 44100, "taskguid" : "2D18AED9-F102-4035-89C2-F3BED0C40D3B", // 媒体播放对象的guid "videobitrate" : 167, "videocodec" : 1, "videoduration" : 8333, // 媒体文件时长(毫秒) "width" : 320 } ~~~