first commit

This commit is contained in:
momen
2021-10-21 14:57:58 +08:00
parent ba65bf40aa
commit 8184931095
572 changed files with 3165246 additions and 305 deletions

View File

@@ -0,0 +1,7 @@
# 6.11.3 ffmpeg 视频连接
将需要连接的视频文件名根据自己需要的顺序放在in.txt文件中每个文件一行
file '0390-3917.mp4'
file '3918-7446.mp4'
连接视频和音频ffmpeg -f concat -i in.txt -c copy out.mp4
只连接视频丢弃音频ffmpeg -f concat -i in.txt -c:v copy -an out.mp4
只连接音频丢弃视频ffmpeg -f concat -i in.txt -c:v none -c:a copy out.mp3