のGUIを作成しようとしていFFMPEG
ます。私はpythonsサブプロセスを使用して、必要なすべての変換に対してffmpegプロセスを作成しています。これは問題なく動作しますが、失敗したかどうかなど、変換の進行状況を取得する方法も必要です。次のようにプロセスの標準にアクセスすることで、これを実行できると考えました。
呼び出しsubprocess.Popen()
# Convert - Calls FFMPEG with current settings. (in a seperate
# thread.)
def convert(self):
# Check if options are valid
if self.input == "" or self.output == "":
return False
# Make the command string
ffmpegString = self.makeString()
# Try to open with these settings
try:
self.ffmpeg = subprocess.Popen(ffmpegString, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except OSError:
self.error.append("OSError: ")
except ValueError:
self.error.append("ValueError: Couldn't call FFMPEG with these parameters")
# Convert process should be running now.
そして読んでstdout
:
convert = Convert()
convert.input = "test.ogv"
convert.output = "test.mp4"
convert.output_size = (0, 0)
convert.convert()
while 1:
print convert.ffmpeg.stdout.readline()
これは機能しますが、ffmpegのステータスは表示されません。私はそれがffmpegがそれをリフレッシュする方法と関係があると思います。アクセスする方法はありますか?