vote up 1 vote down star

Hello everyone, I'm trying to create a Python script that would :

  1. Look into the folder "/input"
  2. For each video in that folder, run a mencoder command (to transcode them to something playable on my phone)
  3. Once mencoder has finished his run, delete the original video.

That doesn't seem too hard, but I suck at python :)

Any ideas on what the script should look like ?

Bonus question : Should I use

os.system

or

subprocess.call

?

Subprocess.call seems to allow for a more readable script, since I can write the command like this :

cmdLine = ['mencoder', sourceVideo, '-ovc', 'copy', '-oac', 'copy', '-ss', '00:02:54', '-endpos', '00:00:54', '-o', destinationVideo]

EDIT : Ok, that works :

import os, subprocess

bitrate = '100'
mencoder = 'C:\\Program Files\\_utilitaires\\MPlayer-1.0rc2\\mencoder.exe'
inputdir = 'C:\\Documents and Settings\\Administrator\\Desktop\\input'
outputdir = 'C:\\Documents and Settings\\Administrator\\Desktop\\output'

for fichier in os.listdir(inputdir):
	print 'fichier :' + fichier
	sourceVideo = inputdir + '\\' + fichier
	destinationVideo = outputdir + '\\' + fichier[:-4] + ".mp4"

	commande = [mencoder,
			   '-of',
			   'lavf',
			   [...]
			   '-mc',
			   '0',

			   sourceVideo,
			   '-o',
			   destinationVideo]

	subprocess.call(commande)

os.remove(sourceVideo)
raw_input('Press Enter to exit')

I've removed the mencoder command, for clarity and because I'm still working on it.

Thanks to everyone for your input.

flag

Grr I'm still having the same problem I had in my previous question; "windows cannot find the file specified". Python and or windows is not a fan of spaces in file and folder names. :( – Manu Jul 13 at 17:23
You'll need double quotes around the file path if there are spaces in it. – tgray Jul 13 at 17:27

5 Answers

vote up 2 vote down check

To find all the filenames use os.listdir().

Then you loop over the filenames. Like so:

import os
for filename in os.listdir('dirname'):
     callthecommandhere(blablahbla, filename, foo)

If you prefer subprocess, use subprocess. :-)

link|flag
This will get you subdirectory names as well as files, and won't recurse into subdirectories. This may be what Manu actually needs, but it won't be that simple if you don't want it to go wrong on subdirectories. – Maciej Pasternacki Jul 13 at 17:03
Well the input folder should only contain video files, no subdirectories – Manu Jul 13 at 17:20
1  
@Maciej: It's dead easy to filter on extension. There is a glob that can be used as well. import glob; glob.glob('/tmp/*.py') – Lennart Regebro Jul 13 at 18:30
vote up 3 vote down

Use os.walk to iterate recursively over directory content:

import os

root_dir = '.'

for directory, subdirectories, files in os.walk(root_dir):
    for file in files:
        print os.path.join(directory, file)

No real difference between os.system and subprocess.call here - unless you have to deal with strangely named files (filenames including spaces, quotation marks and so on). If this is the case, subprocess.call is definitely better, because you don't need to do any shell-quoting on file names. os.system is better when you need to accept any valid shell command, e.g. received from user in the configuration file.

link|flag
think you might have gotten the order wrong...... for root,dir,files in .... – ghostdog74 Jul 14 at 1:13
You're right, I just corrected the code. Thanks. – Maciej Pasternacki Jul 14 at 19:01
vote up 1 vote down

AVI to MPG (pick your extensions):

files = os.listdir('/input')
for sourceVideo in files:
    if sourceVideo[-4:] != ".avi"
        continue
    destinationVideo = sourceVideo[:-4] + ".mpg"
    cmdLine = ['mencoder', sourceVideo, '-ovc', 'copy', '-oac', 'copy', '-ss',
        '00:02:54', '-endpos', '00:00:54', '-o', destinationVideo]
    output1 = Popen(cmdLine, stdout=PIPE).communicate()[0]
    print output1
    output2 = Popen(['del', sourceVideo], stdout=PIPE).communicate()[0]
    print output2
link|flag
In line 5, I think you meant sourceVideo[:-4] – Maciej Pasternacki Jul 13 at 17:18
sourceVideo contains only basename of a path. – SilentGhost Jul 13 at 17:22
If mencoder needs to run in the work directory, add os.chdir('/input') – gimel Jul 13 at 17:42
vote up 0 vote down

Or you could use the os.path.walk function, which does more work for you than just os.walk:

A stupid example:

def walk_func(blah_args, dirname,names):
    print ' '.join(('In ',dirname,', called with ',blah_args))
    for name in names:
    	print 'Walked on ' + name

if __name__ == '__main__':
    import os.path
    directory = './'
    arguments = '[args go here]'
    os.path.walk(directory,walk_func,arguments)
link|flag
1  
os.path.walk is deprecated in favour of os.walk now. – Maciej Pasternacki Jul 14 at 19:02
vote up 2 vote down

Python might be overkill for this.

for file in *; do mencoder -some options $file; rm -f $file ; done
link|flag
1  
>> Python might be overkil defintely not – ghostdog74 Jul 14 at 1:10
I use this script as an oportunity to learn about Python – Manu Jul 14 at 16:30
"When all you have is a hammer, everything looks like a nail" is sort of what my comment is aimed at. – Kurt Jul 16 at 3:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.