diff -r 4e623a4274a1 -r cb885ee44618 gmyth-stream/server/0.2/plugins/transcoders/gmencoder.py --- a/gmyth-stream/server/0.2/plugins/transcoders/gmencoder.py Wed May 16 18:46:10 2007 +0100 +++ b/gmyth-stream/server/0.2/plugins/transcoders/gmencoder.py Thu Jun 14 20:40:47 2007 +0100 @@ -58,8 +58,11 @@ r, w, x = select.select([self.proc.stdout], [], [], 0) if self.proc.stdout in r: progress = self.proc.stdout.readline() + self.log.info ("stdout %s" % progress) if (progress.find ("PROGRESS") >= 0): self.status = progress.split (":")[1] + #if (progress.find ("DONE") >= 0): + # break self.log.info ("Process exit") except Exception, e: self.log.error("Problems handling data: %s" % e)