Skip to content

Commit

Permalink
Merge pull request #24 from oxivanisher/ffmpeg_hangs_fix
Browse files Browse the repository at this point in the history
Hopefully fixes issue #13 for everyone.
  • Loading branch information
Zulko committed Mar 22, 2014
2 parents 4772461 + 62263ed commit 7d513a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions moviepy/video/io/ffmpeg_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def __init__(self, filename, size, fps, codec="libx264",
filename ]

self.proc = sp.Popen(cmd,stdin=sp.PIPE, stderr=sp.PIPE)
self.proc.stderr.close()

def write_frame(self,img_array):
""" Writes 1 frame in the file ! """
Expand Down

0 comments on commit 7d513a2

Please sign in to comment.