mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +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()
|
||||
if p.returncode != 0:
|
||||
raise ExecException(err)
|
||||
return json.loads(out)
|
||||
return json.loads(out.decode('utf-8'))
|
||||
|
||||
|
||||
__all__ = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user