chronolapse icon indicating copy to clipboard operation
chronolapse copied to clipboard

Windows Explorer Crashes when opening result file

Open tikustido73 opened this issue 8 years ago • 3 comments

I tried using the 1.0.7 version of Chronolapse on my Windows 10 PC. After creating a video from the screenshots, I tried opening it, but my Windows Explorer restarted after opening it. I tried right-clicking file and the same thing happened.

tikustido73 avatar Apr 05 '17 13:04 tikustido73

+1 I get the same thing

Clonkex avatar Jun 11 '17 03:06 Clonkex

Under the hood, chronolapse simple uses MEncoder to combine the still images into video, so the problem likely lies somewhere in there. At this point, the version that ships with chronolapse is nearly 10 years old (and has plenty of issues that have since been fixed, particularly with large resolutions). Your problem may go away if you get an updated version of mencoder and point chronolapse to that on the video tab instead of the default.

Alternatively, you can use any external program to combine the images into video (mencoder, ffmpeg, virtualdub, etc) - chronolapse was specifically designed to keep each step separate to make it easy to use other tools for each individual step.

collingreen avatar Jun 13 '17 15:06 collingreen

In the end I just used Advanced Renamer to rename the files as image0001.jpg, image0002.jpg etc. and then ffmpeg to make them into a video, with the following command:

ffmpeg -r 30 -f image2 -s 1920x1080 -i image%04d.png -vcodec libx264 -crf 20 -pix_fmt yuv420p final.mp4

...which I got from this blog post. ffmpeg is a fantastic tool if you can get your head around how it works.

EDIT: Bear in mind if you're running that command from a .bat on Windows (rather than straight from the a cmd window) you'll need to use two percent signs instead of one, i.e. image%%04d.png

Clonkex avatar Jun 13 '17 22:06 Clonkex