This time we set up an rtmp live broadcast server for computers or mobile phones to push live streams to the server, and then other terminals such as computers or mobile phones can watch the live video. Here we use computer screen recording software to broadcast the real-time recorded computer screen images to other people. A total of three parts are required. First, the screen recording software records the computer screen and transmits the picture stream to the server. Second, the server rtmp is set up and should be able to receive the pictures uploaded by the screen recording software. Third, the video player client can connect to the rtmp server and receive the video stream pushed by the rtmp server, so that the real-time picture of the screen recording software in the first part can be watched in real time. The core here is the second part, building an rtmp server. 1. Download nginxNginx is a server software, similar to tomcat, used to publish server programs (1) Download address: Execute the wget http://nginx.org/download/nginx-1.15.3.tar.gz command in Linux to download the compressed package. (2) Decompress using the tar command: tar xvf nginx-1.15.3.tar.gz 2. Download nginx rtmp module wget https://codeload.github.com/arut/nginx-rtmp-module/tar.gz/v1.2.1 Unzip the same tar xvf v1.2.1 3. Compile nginx./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1 4. Modify the conf file in nginx-rtmp-modulecd nginx-rtmp-module-1.2.1 to open the folder, cd test folder, and modify the content of the nginx.conf file to: worker_processes 1; error_log logs/error.log debug; events { worker_connections 1024; } rtmp { server { listen 1935; application myapp { live on; #record keyframes; #record_path /tmp; #record_max_size 128K; #record_interval 30s; #record_suffix .this.is.flv; #on_publish http://localhost:8080/publish; #on_play http://localhost:8080/play; #on_record_done http://localhost:8080/record_done; } } } http { server { listen 8080; location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root /path/to/nginx-rtmp-module/; } location /control { rtmp_control all; } #location /publish { # return 201; #} #location /play { # return 202; #} #location /record_done { # return 203; #} location /rtmp-publisher { root /path/to/nginx-rtmp-module/test; } location / { root /path/to/nginx-rtmp-module/test/www; } } } The streaming address will be rtmp://IP:PORT/myapp/{abc}, where abc in {abc} is optional and is usually a streaming password. When pushing or receiving video streams to the server, you can fill in a password, such as abc. The default rtmp server port is 1935. If this port is occupied, you can kill the process occupying this port using the following command: kill -9 pid (where pid is the process id). Then replace nginx.conf under nginx-1.15.3/bin/conf with this conf, Run the mv nginx.conf nginx.conf.bak command to rename the original nginx.conf without deleting the original file. 5. Start nginxcd nginx-1.15.3 Open the nginx folder /root/nginx-1.15.3/bin/sbin/nginx Start nginx 6. Verify whether nginx rtmp streaming media is deployed successfullyAfter startup, access 122.112.220.253:8080 from your browser. If it doesn't open, At this point, the content of nginx.conf is as follows: user root; worker_processes 1; error_log logs/error.log debug; events { worker_connections 1024; } rtmp { server { listen 1935; application myapp { live on; drop_idle_publisher 5s; } } } http { server { listen 8082; location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root /root/nginx-rtmp-module-1.2.1/; } location /control { rtmp_control all; } location /rtmp-publisher { root /root/nginx-rtmp-module-1.2.1/test; } location / { root /root/nginx-rtmp-module-1.2.1/test/www; } } } 3. Restart nginx and access 122.112.220.253:8082 again. Success. Next time we will use a screen recording software to record the computer screen, use the rtmp protocol to push the computer screen image to the server, and use a player to play the rtmp live stream on the server. This is the end of this article about using Nginx to carry rtmp live broadcast server. For more relevant rtmp live broadcast server content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Why is the MySQL auto-increment primary key not continuous?
>>: Div css naming standards css class naming rules (in line with SEO standards)
1. Explanation of provide and inject Provide and ...
Table of contents Parsing .vue files Extract docu...
The following command is often used: chmod 777 文件...
Preface A requirement I had previously made, to s...
Basic preparation For this implementation, we nee...
During the development process, I often encounter...
1. The ul tag has a padding value by default in Mo...
Table of contents 1. classList attribute 2. Pract...
Table of contents 1. Hash table principle 2. The ...
Usually, we first define the Dockerfile file, and...
MySQL 8.0.19 supports locking the account after e...
Sometimes we may need to run some commands on a r...
Table of contents 1. for loop: basic and simple 2...
1. Use the mysql/mysql-server:latest image to qui...
<br /> Focusing on the three aspects of text...