This code allows you to create a docker container with all the tools to create a RTMP stream. This can be automated to test any kind of cloud live streaming system:
- Brightcove / Zencoder
- Youtube
- Twich
- WowzaStreamingCloud
- etc
- Install docker (https://docs.docker.com/installation/)
- Clone this repository
- Add the mediafiles (.mp4) that you want to include in the container into
./media
- This files should be in the correct format, you can use this snippet as example:
ffmpeg -i INPUTFILE -pix_fmt yuv420p -c:v libx264 -b:v 500k -g 25 -profile:v baseline -preset veryfast -c:a libfaac -b:a 96k -f flv OUTFILE.mp4
- Call
make
- Call
startcontainer.sh IMAGE_ID [dest url] [file to stream] [show logs]
, for example:
./startcontainer.sh ABCDE rtmp://log:[email protected]:1935/live/streamname auto720p30@2M 0
- As
[file to stream]
you can use the following special names that will create auto generated files:
auto240p30@500k: Video 320x240 at 30fps, H264 500Kbps + 1KHz sine audio AAC at 96Kbps
auto720p30@2M: Video 1280x720 at 30fps, H264 2Mbps + 1KHz sine audio AAC at 96Kbps
auto720p60@3M: Video 1280x720 at 60fps, H264 3Mbps + 1KHz sine audio AAC at 96Kbps
auto1080p30@3M: Video 1920x1080 at 30fps, H264 3Mbps + 1KHz sine audio AAC at 96Kbps
auto1080p60@4M: Video 1920x1080 at 60fps, H264 4Mbps + 1KHz sine audio AAC at 96Kbps
- To push to DockerHub (https://docs.docker.com/userguide/dockerrepos/)
- To install docker and pull the container from DockerHub to EC2 follow this guide: (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html)
- Install git
yum install git -y
- Clone this repo in the EC2 server (or just copy the
startcontainer.sh
) - Pull the container
docker pull jcenzano/loadtestv1
It is the result of the compilation of the docker from this repo - Enter in the repo directory
cd rtmploadtestdocker
- To get the IMAGE_ID of the container run
docker images
- Run the container in the EC2 server with
./startcontainer.sh IMAGE_ID [dest url] [file to stream] [show logs]