On Wed, 26 Apr 2006 17:50:36 +0200, muzzol <[EMAIL PROTECTED]> wrote:
hi! i just wanna share this little script to convert canon generated videos to something that cinelerra can read correctly. i own a canon powershot a70 and i can record 320x240 and 640x480 videos. it seems that canon uses an extrange codec/container mixing so cinelerra can't read it. i found this simple settings to convert those videos to mov: ffmpeg -i prova.avi -b 5000 -r 25 -ac 2 -ar 44100 prova.mov
Do you REALLY want to recode the stream, if only the header is wrong? I would have tried a streamcopy first, just to fix the container: ffmpeg -i prova.avi -acodec copy -vcodec copy prova.mov -- Herman Robak _______________________________________________ Cinelerra mailing list [email protected] https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
