首页 新闻 会员 周边

ffmpeg 命令 No such file or directory

0
悬赏园豆:80 [待解决问题]

请问:
ffmpeg 命令 利用批处理命令 批量对m3u8 AES-128加密格式的多个ts文件进行合并出现 :No such file or directory 是怎么回事?

以下是批处理命令:

echo off & color 0A
setlocal enabledelayedexpansion
for /f %%f in ('dir /b /s /a-d playlist.m3u8') do (
set a=%%f
set k=0
echo !a!>tmp.txt
for /f "tokens=1,2 delims=" %%i in (tmp.txt) do set b=%%i%%j
del tmp.txt
echo b=[!b!]
cd /d !b!
ffmpeg -allowed_extensions ALL -i playlist.m3u8 -c copy E:\a!k!.mp4
set /a k=k+1
)
endlocal
pause!

信橘子得永生的主页 信橘子得永生 | 初学一级 | 园豆:122
提问于:2019-08-17 21:19
< >
分享
所有回答(1)
0

提示很明显了,找不到文件或目录,检查下是不是路径写错了

balahoho | 园豆:2050 (老鸟四级) | 2019-08-19 17:22
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册