修复录像回放 Former-commit-id: 07d7ab68295ba6175c4dc7d983cf3ffd86baa273 Former-commit-id: b5399474370dd5a3f8e34c0eabdf0d7b8c154983TSXN
parent
517a674864
commit
f4eaf7baab
@ -0,0 +1,6 @@
|
||||
*.log
|
||||
srs.pid
|
||||
*.m3u8
|
||||
*.ts
|
||||
*.mp4
|
||||
*.png
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream_ld.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream_sd.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="demo.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream_ld.m3u8">
|
||||
</video>
|
@ -0,0 +1,3 @@
|
||||
<video autoplay controls autobuffer type="application/vnd.apple.mpegurl"
|
||||
src="livestream_sd.m3u8">
|
||||
</video>
|
@ -0,0 +1 @@
|
||||
Nginx is ok.
|
Binary file not shown.
@ -0,0 +1 @@
|
||||
srs
|
@ -0,0 +1,22 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
ubuntu:
|
||||
image: ubuntu:16.04
|
||||
working_dir: /root
|
||||
# command: bash -c "while true; do echo hello world; sleep 1; done"
|
||||
command: bash -c "
|
||||
apt-get update
|
||||
&&apt-get install -y sudo
|
||||
&&apt-get install -y python
|
||||
&&apt-get upgrade -y
|
||||
&&apt-get install -y git
|
||||
&&rm -rf /root/srs/
|
||||
&&git clone https://gitee.com/winlinvip/srs.oschina.git srs
|
||||
&&cd srs/trunk
|
||||
&& git remote set-url origin https://github.com/ossrs/srs.git
|
||||
&& git pull
|
||||
&&./configure
|
||||
&& make"
|
||||
volumes:
|
||||
- ./sources.list:/etc/apt/sources.list
|
||||
- ./srs:/root
|
@ -0,0 +1,11 @@
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial universe
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
|
||||
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
|
||||
deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse
|
Loading…
Reference in new issue