mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
- WebRTC plugin adds screen sharing test page - WebRTC plugin push stream test page adds camera selection function - The engine adds the function of dynamically inserting SEI frames - The engine transforms DataTrack and MediaTrack, and reuses part of the code to reduce complexity - The event bus adds the engine initialization completion event - The default port for connecting to the remote console is changed to 44944 - Fix the problem caused by publishing the same StreamPath at the same time - preview插件(Jessibuca Pro)WebRTC协议支持H265以及AAC格式 - WebRTC插件增加屏幕分享测试页面 - WebRTC插件推流测试页面增加摄像头选择功能 - engine增加动态插入SEI帧的功能 - engine对DataTrack改造,和MediaTrack复用部分代码,减少复杂度 - 事件总线增加引擎初始化完成事件 - 连接远程控制台默认端口更换为44944 - 修复同时发布同一个StreamPath引起的问题
17 lines
377 B
Docker
17 lines
377 B
Docker
#源镜像
|
|
FROM alpine:latest
|
|
|
|
WORKDIR /opt
|
|
|
|
ADD monibuca_linux /opt
|
|
ADD favicon.ico /opt
|
|
ADD config.yaml /opt
|
|
ADD local.monibuca.com.key /opt
|
|
ADD local.monibuca.com_bundle.pem /opt
|
|
# RUN apk --no-cache add ffmpeg
|
|
#暴露端口
|
|
EXPOSE 8080 8443 1935 554 58200 5060 8000-9000
|
|
EXPOSE 5060/udp 58200/udp 8000-9000/udp
|
|
|
|
#最终运行docker的命令
|
|
ENTRYPOINT ["./monibuca_linux"] |