From 320040f290c71eb744871cc86ac54ae183dfb704 Mon Sep 17 00:00:00 2001 From: yomguy Date: Fri, 1 May 2009 16:18:59 +0000 Subject: [PATCH] cleanup git-svn-id: http://svn.parisson.org/svn/telemaster/trunk@9 353fd7da-fb10-4236-9bec-1a49139083f2 --- flac2mp3mix.py | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/flac2mp3mix.py b/flac2mp3mix.py index 11b32ef..d9d5ae6 100644 --- a/flac2mp3mix.py +++ b/flac2mp3mix.py @@ -17,7 +17,7 @@ class SubProcessPipe: if not stdin: stdin = subprocess.PIPE - + self.buffer_size = 32768 self.proc = subprocess.Popen(command.encode('utf-8'), shell = True, @@ -28,18 +28,6 @@ class SubProcessPipe: self.stdin = self.proc.stdin self.stdout = self.proc.stdout - - #def stdout(self): - #while True: - #__chunk = self.proc.stdout.read(self.buffer_size) - #if not __chunk: - #break - #yield __chunk - - #def stdin(self, data): - #self.proc.stdin.write(data) - #self.proc.stdin.flush() - class Flac2Mp3Mix: -- 2.39.5