0

我以为我会在几分钟内为 Minecraft 制作一个快速、无延迟的屏幕录像机,我错了!谁能帮我解决这个错误?Eveything 工作正常,但最后一行将图像编译成视频。我有一个 FFMPEG.EXE 作为资源,我将它设置为始终复制,但是每当我运行我的程序并尝试编译视频时,它都会给我一个错误,“无法找到合适的输出格式ffmpeg。” 任何想法都很棒!谢谢!

Dim compiler As String = Application.StartupPath & "\ffmpeg.exe"
Dim compileLoad As String = """" & savePath & "\img%d.jpg" & """"
Dim compileSave As String = """" & savePath & "\a.mpg" & """"
Process.Start(compiler, "ffmpeg -f image2 -i " & compileLoad & " " & compileSave)
4

0 回答 0