gifski
gifski copied to clipboard
Command never ends
Hi,
I'm currently using this command and can't figure out what is happening, when I execute my command, I've got the progress bar and everything, but the command never ends. The progress bar keep staying at "0s" or "1s" remaining as on the screenshot.
The weirdest thing is that the gif is actually generated as it should be. 🤷♂️
But a gifski
process is still working.
EDIT: It seems to be due to the .mov
extension since it works with the same file converted to mp4.
EDIT 2: It works using a converted file from cloudconvert, but not using a file converted using ffmpeg
I think screen recorder in macOS is buggy and generates broken files. Even macOS itself has problems reading these.
https://github.com/sindresorhus/Gifski/issues/202
@kornelski Argh, that's a shame 😔 Pretty much hope they will fix this in the near future 😄
I did manage to figure it out by converting my .mov
broken file right before converting it by using the following command : ffmpeg -y -loglevel panic -err_detect aggressive -fflags discardcorrupt -i file.mov -c:v libx264 -preset slow -crf 18 -c:a copy file.mp4
.
That could maybe help to implement a lib level fix.