美文网首页
ffmpeg批处理按顺序合并视频

ffmpeg批处理按顺序合并视频

作者: lfpwhy | 来源:发表于2018-09-22 23:25 被阅读0次
set /p file=目录地址:
PUSHD %file%
set "lj=%file%"
set "lj=%lj:\= %"
for %%a in (%lj%) do set wjj=%%a
(for /f "delims=*" %%a in ( 'dir /a-d /o:d /b  *.*')  do @echo file '%%a') >%~dp0filelist.txt
ffmpeg -y -f concat -safe 0 -i %~dp0filelist.txt -c copy %wjj%.mp4
pause

相关文章

网友评论

      本文标题:ffmpeg批处理按顺序合并视频

      本文链接:https://www.haomeiwen.com/subject/bzqfoftx.html