Skip to content

Commit

Permalink
printing ffmpeg output
Browse files Browse the repository at this point in the history
  • Loading branch information
hyades committed Sep 4, 2013
1 parent 37dc958 commit 18ba417
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 249 deletions.
247 changes: 0 additions & 247 deletions python-api/out.txt

This file was deleted.

6 changes: 4 additions & 2 deletions python-api/tests/integrationtests/compare.py
Expand Up @@ -73,13 +73,15 @@ def generate_frames(self, directory=REF_FRAME_DIR):
cmd1.split(),
bufsize=-1,
shell=False)
proc.wait()
o, e = proc.communicate()
print o

proc = subprocess.Popen(
cmd2.split(),
bufsize=-1,
shell=False)
proc.wait()
o, e = proc.communicate()
print o



Expand Down

0 comments on commit 18ba417

Please sign in to comment.