result.h264: No such file or directory Cmd
So I was basically trying to recover a corrupted mp4 video, and after this line I pasted:
ffmpeg.exe -r 160.000 -i result.h264 -i result.aac -bsf:a aac_adtstoasc -c:v copy -c:a copy result.mp4I got this:
in ffmpeg.
And I don't understand result.h264. Can you help me solve the error?
11 Answer
It means that file result.h264 does not exist in your pathC:\Users\User\Desktop\Recover\bin.
When you're writing code, after -i drag and drop your h264 file directly on the cmd terminal; by doing this you shouldn't get this error anymore.
0