Quote Originally Posted by Desti View Post
Hi, I can now confirm, that ffmpeg quits when trying to process a glc file with changing pixel size. But I found an easy way to bypass it, we where looking at the wrong side for rescaling! glc-play has it own rescale function, use it and it should work.
Code:
 glc-play video.glc -r 400x200 -y 1 -o - | ffmpeg -i - -vcodec libvpx -b 500k -an -threads 2 video.webm
Whoa! You just found the source of all my problems! Sweet! This also seems to have fixed my issue with premature quitting in ffmpeg as well as the rest of the video being cropped out in mencoder.
Thanks so much for your help!