Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967d838 commit 78ed664Copy full SHA for 78ed664
ffprobe/ffprobe.py
@@ -68,7 +68,7 @@ def __init__(self, path_to_video):
68
stream_metadata_met = False
69
70
for line in iter(p.stderr.readline, b''):
71
- line = line.decode('UTF-8')
+ line = line.decode('UTF-8', 'ignore')
72
73
if 'Metadata:' in line and not stream_metadata_met:
74
is_metadata = True
0 commit comments