树莓派4B安装ffmpeg

环境:

bash 复制代码
pi@raspberrypi:~/x264 $ lsb_release  -a
   No LSB modules are available.
   Distributor ID: Raspbian
   Description:    Raspbian GNU/Linux 10 (buster)
   Release:        10
   Codename:       buster

装H264

bash 复制代码
git clone --depth 1 https://code.videolan.org/videolan/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j4
sudo make install

装ffmpeg

bash 复制代码
git clone git://source.ffmpeg.org/ffmpeg --depth=1
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install

如果下载慢,可以手工下载源码https://ffmpeg.org/download.html

测试

bash 复制代码
ffmpeg -i 1.wmv -y -qscale 0 -vcodec libx264 11.mp4
 

实时视频推拉流:

bash 复制代码
流服务可自行使用nginx+rtmp模板部署,

拉流:
ffplay rtmp://{serverIP}/live/stream


推流
windows: ffmpeg -f dshow -i video="USB2.0_CAM1" -vcodec libx264 -f flv rtmp://{serverIP}/live/stream

windows使用命令ffmpeg.exe -list_devices true -f dshow -i dummy 来查看对应摄像头的名字


linux: ffmpeg -f v4l2 -i /dev/video0 -vcodec libx264 -f flv rtmp://{serverIP}/live/stream
linux则通过 /dev/videoN 来判断
相关推荐
rufeike4 分钟前
Rclone同步Linux数据到google云盘
linux·运维·服务器
csdn_aspnet4 分钟前
如何在 Linux 上安装 Python
linux·运维·python
良许Linux27 分钟前
怎么自学嵌入式?
linux
良许Linux28 分钟前
你见过的最差的程序员是怎样的?
linux
良许Linux33 分钟前
想从事嵌入式软件,有推荐的吗?
linux
西贝爷2 小时前
批量删除git本地分支和远程分支命令
运维
jianbiao14832 小时前
远程服务器下载llama模型
运维·服务器
bookish_2010_prj3 小时前
Jupyter notebook定制字体
linux·python·jupyter
fei_sun3 小时前
获取ssh密钥
运维·ssh
zhglhy4 小时前
查看 Linux 操作系统信息的常用命令
linux·运维·服务器