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 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 theora video to avi video\n'
ogg = raw_input('Enter the ogg file to convert: ')
avi = raw_input('Enter the avi to be created: ')
 
os.system("mencoder %s -ovc lavc -oac mp3lame -o %s" % (ogg, avi))
 
if os.path.exists(avi):
    print '\n\tYour', avi, 'has been created.\n'
    sys.exit()
 
else:
    print 'error, something went wrong!'
    sys.exit()


  
    


  

--
           Wayne Watson (Watson Adventures, Prop., Nevada City, CA)

             (121.01 Deg. W, 39.26 Deg. N) GMT-8 hr std. time)
            
             "If Stupidity got us into this mess, then why can't 
              it get us out?" -- Will Rogers
            
                    Web Page: <www.speckledwithstars.net/>
_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to