Possible Duplicate:
Parsing a stdout in Python
With the following command, it prints '640x360'
>>> command = subprocess.call(['mediainfo', '--Inform=Video;%Width%x%Height%',
'/Users/david/Desktop/1video.mp4'])
640x360
How would I set a variable equal to the string of the output, so I can get x='640x360'? Thank you.
Update: answers can be found here: Parsing a stdout in Python. This worked for me:
>>> p1 = subprocess.Popen(['mediainfo', '--Inform=Video;%Width%x%Height%',
'/Users/david/Desktop/10stest720p.mov'],stdout=PIPE)
>>> output=p1.communicate()[0].strip('\n')
>>> output
'1280x688'