“Ffmepg”的版本间的差异
跳到导航
跳到搜索
第1行: | 第1行: | ||
+ | =Usage= | ||
+ | <pre> | ||
+ | # mylist.txt >>> | ||
+ | file '1.mp4' | ||
+ | file '2.mp4' | ||
+ | file '3.mp4' | ||
+ | # 这些文件是相对路径,如使用绝对路径需要添加 `-safe 0` 参数 | ||
+ | $ ffmpeg -f concat -i mylist.txt -c copy output.mp3 #or output.mp4 | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | https://wangchujiang.com/reference/docs/ffmpeg.html | ||
=install= | =install= | ||
==yum== | ==yum== |
2024年6月23日 (日) 06:13的版本
Usage
# mylist.txt >>> file '1.mp4' file '2.mp4' file '3.mp4' # 这些文件是相对路径,如使用绝对路径需要添加 `-safe 0` 参数 $ ffmpeg -f concat -i mylist.txt -c copy output.mp3 #or output.mp4
https://wangchujiang.com/reference/docs/ffmpeg.html
install
yum
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro #rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm yum install -y ffmpeg #ffmpeg-devel 开发包