1、yum安装epel
CentOS7.6自带的yum源没有nodejs,安装epel后就可以安装nodejs了
yum -y install epel-release
yum clean all && yum makecache -y
2、yum安装nodejs和npm
yum -y install nodejs npm
3、npm安装WebSocket和http-server
npm install ws
npm install http-server
4、源码安装ffmpeg
下载地址http://ffmpeg.org/releases/ffmpeg-4.1.9.tar.xz
4.1、安装ffmpeg需要安装yasm依赖
yum install yasm -y
4.2、上传ffmpeg-4.1.tar.xz到服务器上,解压包
tar xvJf ffmpeg-4.1.tar.xz
4.3、源码编译安装
cd ffmpeg-4.1
./configure --prefix=/usr/local/ffmpeg && make && make install
4.4、配置程序运行的时候根据指定的路径去加载指定的库
vim /etc/ld.so.conf
添加一行
"
/usr/local/ffmpeg/lib/
"
4.5、配置环境变量
vim /etc/profile
添加两行
"
export FFMEPG=/usr/local/ffmpeg
export PATH=${FFMEPG}/bin:${PATH}
"
4.6、使环境变量配置生效
source /etc/profile
4.7、查看版本
ffmpeg -version
"
ffmpeg version 4.1 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-36)
configuration: --prefix=/usr/local/ffmpeg
libavutil 56. 22.100 / 56. 22.100
libavcodec 58. 35.100 / 58. 35.100
libavformat 58. 20.100 / 58. 20.100
libavdevice 58. 5.100 / 58. 5.100
libavfilter 7. 40.101 / 7. 40.101
libswscale 5. 3.100 / 5. 3.100
libswresample 3. 3.100 / 3. 3.100
"
5、上传包jsmpeg-master.zip到服务器上,解压包
unzip jsmpeg-master.zip
到解压的文件夹里
cd jsmpeg-master
6、启动端口8080 8082,
node /root/jsmpeg-master/websocket-relay.js supersecret 8080 8082
放到后台运行
nohup node /root/jsmpeg-master/websocket-relay.js supersecret 8080 8082 > node.log 2>&1 &
7、转rtsp流
ffmpeg -rtsp_transport tcp -i "rtsp://*******" -f mpegts -vcodec mpeg1video http://127.0.0.1:8080/supersecret
放到后台运行
nohup ffmpeg -rtsp_transport tcp -i "rtsp://*******" -f mpegts -vcodec mpeg1video http://127.0.0.1:8080/supersecret > ffmpeg.log 2>&1 &
8、浏览器查看
8.1、在服务器安装web服务:httpd
yum -y install httpd
systemctl start httpd
8.2、从jsmpeg-master复制页面文件到httpd服务web路径
cp jsmpeg-master/view-stream.html /var/www/html/
cp jsmpeg-master/jsmpeg.min.js /var/www/html/
8.3、在浏览器打开访问
http://192.168.11.5/view-stream.html