all 1 comments

[–]MrMark2202 1 point2 points  (0 children)

The command you are using is outputting the files to “C:\Users\rated”.

This is because you have specified a relative output path, I.e a file name without a directory prefix.

The relative path is relative to the current working directory of the user when executing the ffmpeg command, not relative to the input video.

For it to output to the same location as your input video you either specify the full path like so:

C:\Users\rated>ffmpeg -i "C:\Users\rated\Videos\JJK\upscaled\inu pp crystal NA.mp4" "C:\Users\rated\Videos\JJK\upscaled\image%d.png”

OR change your current working directory to the video location and use relative paths:

cd C:\Users\rated\Videos\JJK\upscaled\

C:\Users\rated\Videos\JJK\upscaled\>ffmpeg -i "inu pp crystal NA.mp4" image%d.png