加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
playing.js 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
坟场蹦迪i 提交于 2023-01-14 10:52 . moongoose问题
const NodeMediaServer = require('node-media-server');
//视频流 rtmp://IP地址+端口号/live/自定义接口名称 rtmp://192.168.2.65:3086/live/video
const config = {
rtmp: {
port: 1935,
chunk_size: 60000,
gop_cache: true,
ping: 30,
ping_timeout: 60
},
http: {
port: 8000,
allow_origin: '*'
}
};
let nms = new NodeMediaServer(config)
nms.run();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化