使用 ffmpeg 将文件夹中的所有视频合并为单个视频文件 2023-2-23 16:10 | 1,459 | 0 | 后端开发,杂项 93 字 | 1 分钟内 需要安装 ffmpeg 首先使用 Windows PowerShell 输入 bash 指令 foreach ($i in Get-ChildItem .\*.mp4) {echo "file '$i'" >> mylist.txt} 由于使用 Windows PowerShell 生成的文件默认为 UTF-16,我们需要使用 VSCo…