Closed kakyoism closed 2 years ago
I'm sortof torn on this one, the EBU spec is pretty clear that the description field has to be ASCII.
Oh sorry, I forgot I actually wrote a way around this: instead of
reader = wavinfo.WaveInfoReader('/path/to/my.wav')
you should do:
reader = wavinfo.WaveInfoReader('/path/to/my.wav', bext_encoding='utf-8')
You can use any encoding here that Python's encoding
import recognizes. Let me know if this works!
Repro
wavinfo
to create a reader,Observed
This generates errors
Expected
wavinfo
should support arbitrary text codec or at least UTF-8