ubuntu
littlenorth
潜心学习,只为成就更优秀的自己
展开
-
常用ffmpeg视频处理命令
将图片拼成视频:ffmpeg -f image2 -i <input path> <output path>#因为是多张图片需要根据顺序去索引,如下:ffmpeg -f image2 -i %d.jpg cam1.mp4视频分辨率转换:ffmpeg -i <input path> -s 640x480 <output path> 视频按帧截取:ffmpeg -i <input path> -vf "select=bet原创 2021-08-22 11:23:31 · 672 阅读 · 0 评论 -
两台Ubuntu系统设备手动对时系统搭建
1. 两台ubuntu系统都安装ntpsudo apt install ntp2 关闭防火墙 sudo iptables -t filter -A INPUT -p udp --destination-port 123 -j ACCEPT3. 其中一台做主机ntp 服务器 修改配置文件sudo vim /etc/ntp.conf增加部分: # Needed for adding pool entries restrict xxx.xxx.xxx...原创 2021-08-15 16:40:08 · 425 阅读 · 0 评论