tuffy
tuffy
The trouble with `ByteRead` being a subtrait of `Read` is the name collision with the `read()` method, so that doesn't quite work. But I've pushed out a new 1.9 version...
There's not a lot of good options to split files without re-encoding since split points aren't likely to fall exactly on FLAC frame boundaries, renumbering the remaining frames to start...
It looks very useful, but supporting it appears non-trivial. I can't find any specification on how clients are supposed to operate, and the reference implementation is all dot net code....
I've overhauled the bitstream handling routines responsible for writing metadata to handle reads and writes of any size values on every platform. If this doesn't solve the problem, let me...
I've added your fix, along with some unit tests for it, and pushed them out. Thanks!
I've pushed out a fix to ensure CD reading doesn't lock up the whole Python interpreter. That way you should be able to perform a ctrl-c to exit in the...
The cuesheet tag isn't in the APEv2 or True Audio specifications at all, so it's going to have to be some sort of de-facto standard. But WavPack uses APEv2 like...
That sounds good. I've pushed out a fix which treats "CUESHEET" as an alias for "Cuesheet" in APEv2 tags. Hopefully that'll take care of it.
I've added an additional check which should keep that error from occurring. But a short Xing header in the first frame of an MP3 file might indicate the file hadn't...
What happens when you try to run oggenc directly, such as on a .wav file using "oggenc file.wav" ? If you're able to run it successfully, I may need to...