更新時(shí)間:2019-11-19
該接口用于獲取某個(gè)媒體類型的設(shè)備序號(hào)列表,設(shè)置媒體類型使用的設(shè)備序號(hào),設(shè)置麥克或揚(yáng)聲器的音量,獲取麥克或揚(yáng)聲器音量,播放媒體鈴聲,停止播放媒體鈴聲。
前提是已登錄。
代碼示例:
client.getMediaDevice(2, function (data) { if (data.info != null) { for (var i = 0; i < data.info.length; i++) { console.log("camera device:" + data.info[i].name)); } } }); |
參考文件:\usage\components\media_device.html。
代碼示例:
var micSel = document.getElementById("MICDevice"); var selIndex = micSel.selectedIndex; if (selIndex !== -1) { var micIndex = micSel.options[selIndex].value; client.setMediaDevice(0, parseInt(micIndex)); } |
參考文件:\usage\components\media_device.html。
代碼示例:
client.getVoiceVol(1, function (data) { speakervol.value = data.info; }) |
參考文件:\usage\components\media_device.html。
代碼示例:
var micvol = document.getElementById("MICVol"); client.setVoiceVol(0, parseInt(micvol.value)); |
參考文件:\usage\components\media_device.html。
代碼示例:
var playHandle; function startPlayMedia(){ var mediaFilePath = document.getElementById("media_file_path").value; client.startPlayMedia(0, mediaFilePath,function(data){ if(data.result){ playHandle = data.info.playHandle; } }); } |
參考文件:\usage\conference_usage.js。
代碼示例:
function stopPlayMedia(){ client.stopPlayMedia(playHandle); } |
參考文件:\usage\conference_usage.js。