百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

技术分享|如何搭建直播场景下的推拉流媒体服务器

off999 2025-02-13 13:53 21 浏览 0 评论

介绍

本文使用的流媒体服务器的搭建是基于rtmp(Real Time Message Protocol)协议的,rtmp协议是应用层的协议,要依靠底层的传输层协议,比如tcp协议来保证信息传输的可靠性。

相关服务: Nginx、srs、MediaServer等三种推流服务

系统: CentOS Linux release 7.9.2009

推流工具:OBS 27.1.3

拉流工具:PotPlayer 1.7.21564

注意事项:由于内网测试 关闭防火墙与SElinux

Nginx部署

Nginx需要nginx-rtmp-module模块,yum安装没有此模块,所以本次使用源码安装

## 安装Nginx所需依赖
[root@localhost ~]# yum install gcc gcc-c++ make automake autoconf libtool pcre* zlib openssl openssl-devel git

## 下载所需安装包
[root@localhost ~]# cd  /home/artc
[root@localhost artc]# mkdir Nginx #创建源码目录 后面的源码都放在这个目录
[root@localhost artc]# cd Nginx
[root@localhost Nginx]# git clone https://github.com/nginx/nginx.git #从github服务器上将nginx的源代码下载下来
[root@localhost Nginx]# git clone https://github.com/arut/nginx-rtmp-module.git #将rtmp模块的源码下载下来
## 编译安装Nginx
[root@localhost ~]# cd /home/artc/Nginx/nginx
[root@localhost nginx]# ./auto/configure --prefix=/usr/local/nginx \
        --with-http_v2_module \
        --with-http_flv_module \
        --with-http_mp4_module \
        --add-module=../nginx-rtmp-module/
[root@localhost nginx]# make && make install 
## 更改配置文件
[root@localhost nginx]# cd /usr/local/nginx/conf
[root@localhost conf]# vim nginx.conf
#在http模块外添加
rtmp  {
    server  {
        listen 1915;
        timeout 20s;

        application live  {
            live on;
            record off;
        }

## 一个音视频模块
        application anyrtc  {
            live on;
            hls  on;
            hls_path temp/zyh;
            hls_playlist_length 5s;
            hls_fragment 1s;
        }

        application vod  {
            play /var/flvs;
        }

        application vod_http  {
            play http://服务器IP/vod;
        }

## 一个音视频模块
        application hls  {
            live on;
            hls on;
            record off;
            hls_path /tmp/hls;
            hls_playlist_length 5s;
            hls_fragment 1s;
        }
    }
}

## 启动Nginx
[root@localhost nginx]# /usr/local/nginx/sbin/nginx

rtmp地址:
rtmp://192.168.1.13:1915/anyrtc

OSB推流

确定———>开始推流

PotPlayer拉流

右键——>打开链接

拉取成功

SRS部署

下载地址:
http://ossrs.net/releases/download.html

## 安装依赖
[root@localhost artc]# yum install -y redhat-lsb

## 部署
[root@localhost artc]# unzip SRS-CentOS7-x86_64-3.0.168
[root@localhost artc]# cd SRS-CentOS7-x86_64-3.0.168/
[root@localhost SRS-CentOS7-x86_64-3.0.168]# ./INSTALL 
[root@localhost SRS-CentOS7-x86_64-3.0.168]# systemctl start srs.service

## 配置文件在/usr/local/srs
[root@localhost SRS-CentOS7-x86_64-3.0.168]# cd /usr/local/srs/conf
[root@localhost conf]# vim srs.conf
# main config for srs.
# @see full.conf for detail config.

listen              1935;               ##rtmp默认端口
max_connections     1000;
srs_log_tank        file;
srs_log_file        ./objs/srs.log;
daemon              on;
http_api {
    enabled         on;
    listen          1985;
}
http_server {
    enabled         on;
    listen          9090;               ## srs管理平台端口  默认是8080 这里端口冲突改为9090
    dir             ./objs/nginx/html;
}
stats {
    network         0;
    disk            sda sdb xvda xvdb;
}
vhost __defaultVhost__ {
    hls {
        enabled         on;
    }
    http_remux {
        enabled     on;
        mount       [vhost]/[app]/[stream].flv;
    }
}

rtmp地址: rtmp://192.168.1.13:1935

OSB推流

确定———>开始推流

PotPlayer拉流

右键——>打开链接

拉取成功

ZLMediaKit部署

下载地址: git clone --depth 1
https://gitee.com/xia-chu/ZLMediaKit

## 准备环境
[root@localhost artc]# yum -y update

## gcc和yasm需要高版本  小编用的是gcc4.8.5 yasm1.2.0
[root@localhost artc]# yum -y update   yasm  gcc* 
[root@localhost artc]# yum -y install  openssl-devel  SDL-devel

## 编译安装cmake 3.8.2
[root@localhost ~]# cd /home/artc
[root@localhost artc]# wget https://cmake.org/files/v3.8/cmake-3.8.2.tar.gz
[root@localhost artc]# tar zxvf cmake-3.8.2.tar.gz
[root@localhost artc]# cd cmake-3.8.2
[root@localhost cmake-3.8.2]# ./bootstrap
[root@localhost cmake-3.8.2]# gmake
[root@localhost cmake-3.8.2]# gmake install

## 国内库比较快
[root@localhost ~]# cd  /home/artc 
[root@localhost artc]# git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit
[root@localhost artc]# cd ZLMediaKit
#千万不要忘记执行这句命令
[root@localhost ZLMediaKit]# git submodule update --init

## 编译安装
[root@localhost ZLMediaKit]# mkdir build
[root@localhost ZLMediaKit]# cmake .
[root@localhost ZLMediaKit]# make -j4

## ZLMediaKit服务目录
[root@localhost ZLMediaKit]# cd release/linux/Debug

## 配置文件
[root@localhost Debug]# vim config.ini 
[rtmp]  ##228行左右
handshakeSecond=15
keepAliveSecond=15
modifyStamp=0
port=1955                   ## 默认1935   端口冲突 修改了1955
sslport=0

## 程序启动
[root@localhost Debug]# ./MediaServer      ## 前台启动
[root@localhost Debug]# ./MediaServer -d & ## 后台启动

## 软连接
[root@localhost Debug]# ln -sf /home/ZLMediaKit/release/linux/Debug/MediaServer /usr/bin/

rtmp地址: rtmp://192.168.1.13:1955

OSB推流

确定———>开始推流

PotPlayer拉流

右键——>打开链接

拉取成功

rtsp推流地址: rtsp://192.168.1.13

ffmpeg推流

ffmpeg    -re  -i  yace.mp4    -vcodec h264 -acodec aac -strict -2   -f rtsp -rtsp_transport tcp  rtsp://192.168.1.13/anyrtc/ZLMediaKit

PotPlayer拉流

右键——>打开链接

拉取成功

相关推荐

Python 打包为 Android 的 APK 文件,环境配置技术要点

现在可以用Flet或PyMe开发python应用程序app,并且打包为安卓APK文件。这对很多梦想用python开发手机应用的小伙伴提供了希望和通道。然而,打包安卓Android也...

Python虚拟环境搭建全指南,轻松解决包冲突

大家好,我是科雷!在Python开发中,虚拟环境是隔离项目依赖的重要工具,能避免不同项目间的包版本冲突。本文将详解Python内置的venv模块和第三方工具virtualenv的核心功能,带你快速掌...

这款 Python 打包exe工具太香了。图形化操作从此告别命令行

不用记命令,点鼠标就能把Python代码变成能直接打开的程序,这款工具把打包步骤从查教程的1小时压缩到3分钟选脚本的时候点“浏览”找文件,不用自己打路径,就像在电脑里找照片一样简单。设计这个功能,是因...

Python的wget库:一键下载网络资源的高效工具

大家好,我是科雷!在Python的网络资源获取工具中,wget库以其简洁高效的特点深受开发者喜爱。它能快速下载网页、图片、视频等各类网络资源,无需复杂的代码编写。本文将带你掌握wget库的核心功能及实...

UV 迄今最快、最好的 Python 包管理器

一个极速的Python包和项目管理器,用Rust编写。亮点一个可以取代pip、pip-tools、pipx、poetry、pyenv、twine、virtualenv等工具的单一工具。比...

Python M3U8下载器v1.2.1:高效解析,轻松获取流媒体资源

在流媒体内容获取场景中,PythonM3U8下载器v1.2.1以轻量化架构与强兼容性,成为开发者与普通用户获取M3U8格式视频的高效工具,解决了传统下载工具解析慢、易中断的痛点。其核心优势集中在...

丢掉Excel,手把手教你用Python做可视化,还能调节动画丝滑度

Pine发自凹非寺量子位|公众号QbitAI数据可视化动画还在用Excel做?现在一个简单的Python包就能分分钟搞定!而且生成的动画也足够丝滑,效果是酱紫的:这是一位专攻Python语言...

18.4K Star!本地部署 AI 写作助手,离线也能写文章

软件介绍:LocalLLaVA是一个本地部署的多模态AI写作助手,支持图像理解与文本生成结合,用户可以上传图片并让AI根据图片内容生成描述、文案、故事等,适合内容创作者、自媒体人使用。特点:...

将安卓手机打造成你的 Python 开发利器

优质文章,第一时间送达!作者|王翔来源|清风Python超神利器…相信多数安卓用户都使用过Qpython这款移动端的Python编辑器吧?之前我也研究过一阵子这个工具,但因为一次简单的爬虫让我...

银河麒麟系统离线安装pip和paramiko

######参考网址:https://blog.csdn.net/chrnhao/article/details/138717281将python库下载到本地安装—Pypi官网wheel版本选择详...

统信UOS服务器操作系统离线安装postgresql数据库

原文链接:统信UOS服务器离线安装postgresql数据库Hello,大家好啊!今天给大家带来一篇关于在统信UOS服务器操作系统上离线安装PostgreSQL数据库的文章。PostgreSQL是一款...

关于Linux下Docker内网离线安装的一些笔记

写在前面博文为内网离线安装docker教程安装前提是你需要有一台最小化安装的Linux机器,可以是虚机如果不是最小化,可能需要手动下载一些依赖理解不足小伙伴帮忙指正我所渴求的,無非是將心中脫穎...

抖音上好看的小姐姐,Python给你都下载了

阅读文本大概需要15分钟。1目标场景相信大家平时刷抖音短视频的时候,看到颜值高的小姐姐,都有随手点赞关注的习惯。如果一条条去刷确实很耗时间,如果Python能帮忙筛选出颜值高的小姐姐那就...

全网最简单易懂!495页Python漫画教程,高清PDF版免费下载

全网最简单易懂!495页Python漫画教程,高清PDF版免费下载今天给那些在学习Python路上有挫折的朋友分享一份《看漫画学Python》,不同的是本书采用漫画的形式,用简单易懂的语言和图片详细解...

Python爬虫-面向知乎的答案提取和图片下载

需求描述:爬取知乎的答案,爬取并下载一个问题下所有回答中的图片。实现平台:开发工具PyCharm2017,语言版本Python3.6,Chrome谷歌浏览器。基本原理:1.发送请求,获取网页HTML源...

取消回复欢迎 发表评论: