mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Fix ffprobe string decoding
This commit is contained in:
parent
25bda398c9
commit
24e737f78e
@ -20,7 +20,7 @@ def probe(filename):
|
|||||||
out, err = p.communicate()
|
out, err = p.communicate()
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
raise ExecException(err)
|
raise ExecException(err)
|
||||||
return json.loads(out)
|
return json.loads(out.decode('utf-8'))
|
||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user