Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Explorer Crashes when opening result file #19

Open
tikustido73 opened this issue Apr 5, 2017 · 3 comments
Open

Windows Explorer Crashes when opening result file #19

tikustido73 opened this issue Apr 5, 2017 · 3 comments

Comments

@tikustido73
Copy link

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.

@Clonkex
Copy link

Clonkex commented Jun 11, 2017

+1 I get the same thing

@collingreen
Copy link
Owner

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.

@Clonkex
Copy link

Clonkex commented Jun 13, 2017

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants