WebRtc之HTML推流控制码率范围
首先获取摄像头的流,请在 localhost 或者 https 环境下获取navigator.mediaDevices.getUserMedia({video: true, audio: true}).then(stream => { })创建RTCPeerConnection,并将获取到的流...
windows启动jar乱码
启动脚本修改为:chcp 65001 title xxxx java -Dfile.encoding=utf-8 -jar -Xmx2048M -Xms512M xxx.jar
Mac中redisson启动报错
redisson的配置:redis: config: | singleServerConfig: idleConnectionTimeout: 10000 connectTimeout: 10000 timeout: 3000 retryAttempts: 3 retryInterval: 1500 password: null subscripti...
Electron loadFile加载路由
开发模式:window.loadURL(process.env['ELECTRON_RENDERER_URL'] + '/#/xxxx')打包后:window.loadFile(join(__dirname, '../renderer/index.html'), { hash: 'xxx' })
AJ-Captcha vue2/3前端通用代码
AJ-Captcha gitee地址:https://gitee.com/anji-plus/captcha下载附件里的代码,解压放置对应的项目组件目录下修改 api/index.js 里的 request 函数为项目本身的axios,及对应的后端地址如果没...
Vite 单JS文件批量打包
文件目录如下:lib下的目录是要打包成单个js的源文件更改package.json{ 'name': 'xt-plugin-auth', 'version': '1.0.0', 'main': 'index.js', 'license': 'MIT', 'type': 'module', 'scripts': ...
JS 切换video的音频播放设备
获取video标签获取扩音器设备切换输出设备// element video标签的dom // sinkId 扩音器设备ID function attachSinkId(element, sinkId) { if (typeof element.sinkId !== 'undefined') { elemen...