I am attempting to call ffmpeg to create an image from a frame in a video, I am using python to do this with subprocess.Popen on a mac, eventually this will move to a unix server.

I can successfully create a video from the command line with this line

ffmpeg -i /Users/bimemployee/Movies/ski\ commute.m4v -r .5 -vframes 1 -ss 00:01:14 /Users/bimemployee/Movies/untitled\ folder/image-%d.jpeg

I then turn this into a python iterable and passed it Popen

s=["ffmpeg","-i","Users/bimemployee/Movies/ski\ commute.m4v","-r","1","-vframes","1","-ss","00:01:14","/Users/bimemployee/Movies/untitled\ folder/image-%d.jpeg"]
subprocess.Popen(s)

When I do so I get the standard info screen from ffmpeg and an error that says Users/bimemployee/Movies/ski\ commute.m4v: No such file or directory

Why would this path work ok from the command line but not from python?

Secondly is their a better library for handling this, the ones I could find don't seem to be active projects or don't work with straight python but require things like cython.

Thanks, CG

link|improve this question

77% accept rate
3  
you don't need the backslash in a python string before a space – Kru Feb 10 at 20:56
Hmm, s=["ffmpeg","-i","Users/bimemployee/Movies/ski commute.m4v","-r","1","-vframes","1","-ss","00:01:14","/Users/bimemployee/Movies‌​/untitled folder/image-%d.jpeg"] still give me Users/bimemployee/Movies/ski commute.m4v: No such file or directory – Cory Gwin Feb 10 at 21:39
feedback

1 Answer

up vote 0 down vote accepted

You're missing the opening forward slash:

/Users/bimemployee/Movies/ski_commute.m4v

is not the same as

Users/bimemployee/Movies/ski_commute.m4v
link|improve this answer
uggh, duhh thanks :) – Cory Gwin Feb 10 at 21:46
feedback

Your Answer

 
or
required, but never shown

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