摘要:
2,3,4路视频拼接可以参考下面: https://blog.csdn.net/tianshan2010/article/details/104737576 https://blog.csdn.net/Gary__123456/article/details/88742705 4路拼接【上下左右】: 阅读全文
摘要:
最近听评书,发现某些mp3声音真是够小的。 #!/bin/bash # 获取 mean_volume mean_volume=$(ffmpeg -i $1 -filter_complex "volumedetect" -f null /dev/null 2>&1 | sed -n 's/.*mean 阅读全文
摘要:
试用授权文件位于程序配置目录下的 eval 文件夹,程序配置目录如下,将程序配置路径下的 eval 文件夹 重命名或者删除后,重启程序即可。 windows:%userprofile%/AppData/Roaming/JetBrains/产品名版本号 macos: ~/Library/Applica 阅读全文
摘要:
Centos8 安装mysql5.7 https://computingforgeeks.com/install-mysql-5-7-on-centos-rhel-linux/ 注意事项 本次使用的是 CentOS7 + MySQL 5.7.32 其他版本的 5.7 MySQL 应该也支持 本次不提 阅读全文
摘要:
看这里、看这里 https://github.com/sunfjun/Dockfile-Coreseek 阅读全文
摘要:
印象笔记一天比一天垃圾了,没有最垃圾,只有更垃圾。 阅读全文
摘要:
1. 创建docker网络 docker network create -d bridge elastic 2. 拉取elasticsearch 8.4.3版本 docker pull elasticsearch:8.4.3 3. 第一次执行docker脚本 docker run -it \ -p 阅读全文
摘要:
排序 /bin/netstat -antp|grep :80|awk ' ''{print $5}'|awk -F: '{print $1}'|sort -r|uniq -c|sort -n -k1 -r 计算和 grep "GET" ./live.log |grep "礼物" | awk -F " 阅读全文
摘要:
比如我们有一个视频文件,1.mp4,分辨率为720P,也就是1280x720像素。 假如我们想要使用ffmpeg根据1.mp4生成一个小一点分辨率的视频,比如我们想要生成一个640x480的视频文件,我们应该怎么做呢,一句命令行搞定: ffmpeg -i 1.mp4 -vf scale=640:48 阅读全文
摘要:
ffmpeg 两路视频平铺 ffmpeg -i src.mp4 -i dst.mp4 -filter_complex "[0:v]pad=iw*2:ih[a];[a][1:v]overlay=w*1" output.mp4 -y 图片转视频 ffmpeg -r 10 -i output/ezgif- 阅读全文