Fix ffprobe string decoding

This commit is contained in:
Karl Kroening 2018-01-27 21:32:11 -08:00
parent 25bda398c9
commit 24e737f78e

View File

@ -20,7 +20,7 @@ def probe(filename):
out, err = p.communicate()
if p.returncode != 0:
raise ExecException(err)
return json.loads(out)
return json.loads(out.decode('utf-8'))
__all__ = [