😅 ffmpeg批量视频合并脚本实现或软件推荐?手动输入is fuck pain #4230
specked2527
started this conversation in
分享 / Share
Replies: 1 comment
-
😅 增加了 半自动重命名 生成文件和你原视频名字一样 (: 差不多了 #使用前提 下载安装添加 ffmpeg 变量
#目录下 把所有的mp4文件 m4a文件 合并output.mp4
#警告:只能两个一组使用
$nae=(ls *.mp4)
$audio=(ls *.m4a)
$video=(ls *.mp4)
for($i=0; $i-lt $video.length; $i++){
#$merge = $video;
ffmpeg -hide_banner -i $video -i $audio -c copy output.mp4
rename-Item "output.mp4" -NewName "$nae.mp4"
}
pause;
#新建txt然后粘贴进去,文件名改为out.ps1(.ps1后缀,作为powershell脚本运行)
#文件保存在你的视频文件夹下,右键脚本,选择“使用PowerShell运行”# |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
♿ .BAT和PowerShell 都没有(?)能批量使用视频合并脚本的命令 准确来说ffmpeg不支持批量视频合并
♿ 乱写的 勉强能用
使用前提 下载安装添加 ffmpeg 变量
目录下 把所有的mp4文件 m4a文件 合并output.mp4
警告:只能两个一组使用
$video=(ls *.mp4); #.mp4文件
$audio=(ls *.m4a); #.m4a文件
for($i=0; $i-lt $video.length; $i++){
ffmpeg -hide_banner -i $video -i $audio -c copy output.mp4 }
pause;
Exit;
#新建txt然后粘贴进去,文件名改为out.ps1(.ps1后缀,作为powershell脚本运行)
文件保存在你的视频文件夹下,右键脚本,选择“使用PowerShell运行”
Beta Was this translation helpful? Give feedback.
All reactions