Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread Wayne Watson
Title: Signature.html I'm not at all familiar with the code or any techniques it embodies. Is mencoder to somemovie.mov part of the code I posted? I'm not familiar with ogg, or theora. Does the python code produce a avi file from somemovie.mov? David wrote: David wrote: You could

Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread Lie Ryan
On Wed, Oct 15, 2008 at 1:25 AM, Wayne Watson <[EMAIL PROTECTED]> wrote: > ... of mov files. (See Subject). Our meteor software program uses a py > program to produce a movie from images taken by an all-sky camera. The > frames are in a simple but different format than likely used anywhere > else.

Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread David
David wrote: > You could use mencoder, part of mplayer; > mencoder -oac mp3lame -ovc lavc -vf scale=0:0:0:0:0:0:qpal > somemovfile.mov -o outavifile.avi > > Here is a program to convert ogg theora to avi; > > #!/usr/bin/python > #Filename = ogg_to_avi.py > > import os,sys > > print '\n\togg the

Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread Kent Johnson
On Wed, Oct 15, 2008 at 9:26 AM, Wayne Watson <[EMAIL PROTECTED]> wrote: > See movie-clue at Wow. Someone has reverse-engineered the entire .mov file format! I don't think you will be able to reuse any of that except perhaps MakeJPEG(). The only solution I can find

Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread Wayne Watson
See movie-clue at Kent Johnson wrote: On Wed, Oct 15, 2008 at 1:25 AM, Wayne Watson <[EMAIL PROTECTED]> wrote: ... of mov files. (See Subject). Our meteor software program uses a py program to produce a movie from images taken by an all-sky camera. The frames are in a simple but

Re: [Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-15 Thread Kent Johnson
On Wed, Oct 15, 2008 at 1:25 AM, Wayne Watson <[EMAIL PROTECTED]> wrote: > ... of mov files. (See Subject). Our meteor software program uses a py > program to produce a movie from images taken by an all-sky camera. The > frames are in a simple but different format than likely used anywhere else. >

[Tutor] Looking for Clues to Make a Program Produce avi Files Instead ...

2008-10-14 Thread Wayne Watson
Title: Signature.html ... of mov files. (See Subject). Our meteor software program uses a py program to produce a movie from images taken by an all-sky camera. The frames are in a simple but different format than likely used anywhere else. From these, it produces a mov file. As I understand it,