You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got this FLAC audio that displays these information when I run soxi -a audiofile.flac :
$ soxi -a 1989_7240_000022.flac
artist=Giacomo Leopardi
DESCRIPTION=https://archive.org/details/
genre=Speech
title=13 - La sera del d� di festa
album=Canti
TRACKNUMBER=13
encoder=Lavf57.83.100
When I use sox.file_info.comments() I got an UnicodeDecodeError at
shell_output = shell_output.decode("utf-8")
in core.py, line 155
Right now I just catch that errror and call soxi as a subprocess and then decode it with
.decode("utf-8", "ignore")
but also a "replace" flag could be useful and can be given to the shell_output.decode line
Hello there,
I got this FLAC audio that displays these information when I run
soxi -a audiofile.flac
:When I use
sox.file_info.comments()
I got anUnicodeDecodeError
atshell_output = shell_output.decode("utf-8")
in core.py, line 155
Right now I just catch that errror and call soxi as a subprocess and then decode it with
.decode("utf-8", "ignore")
but also a "replace" flag could be useful and can be given to the
shell_output.decode
linehttps://github.com/rabitt/pysox/blob/7e0891a40ad4e29e2a67e6abf826cd048377231c/sox/core.py#L162
The text was updated successfully, but these errors were encountered: