Local subversion on 1and1

1and1 had an update. Good. It broke subversion. Bad. After a short fight with subversion 1.4.6 (which didn’t work) I thought about using 1.4.5. Fortunately that’s pretty straightforward and… it works! So here are the commands for that. I develop on Eclipse using a JumpBox Trac/Subversion server locally. Changes to my Django app and [...]

Another python audio library that can handle FLAC

Just a note about another one.
TagPy | Andreas Klöckner’s web page

TagPy is a set of Python bindings for Scott Wheeler’s TagLib. It builds upon Boost.Python, a wrapper generation library which is part of the Boost set of C++ libraries [3].
Just like TagLib, TagPy can:

read and write ID3 tags of version 1 and [...]

Python and FLAC audio files

Kinda neat this library is. Even works on multilingual song files.
Development/Mutagen/Tutorial - Ex Falso / Quod Libet - Trac

from mutagen.flac import FLAC audio = FLAC(“example.flac” ;) audio["title"] = “An example” audio.pprint() [...]