Christiaan Maks
Christiaan Maks
I want to use a function that I import from another file but that gives my webpack errors during runtime: `Uncaught ReferenceError: _helpers_harmonic__WEBPACK_IMPORTED_MODULE_12__ is not defined`. Is there a way...
Since a while (maybe since Electron 11), the window state does not persist anymore. The json file is not created anymore so my window state resets every time. I tried...
When I run this command (notice the `ō`, which is [this char](https://www.fileformat.info/info/unicode/char/014d/index.htm)): ``` eyeD3.exe -P lameinfo -l debug C\:/Users/Christiaan/Music/test\ tracks/Kaikō\ -\ Djedjotronic.mp3 ``` I get the following error: ``` eyed3:DEBUG:...
Mockgoose uses an in-memory version of mongodb so tests start fresh each time and no database is polluted should certain tests fail. Edit: one thing ive noticed with Mockgoose is...
See https://github.com/WhoopInc/supertest-as-promised/issues/44
I have a few AIFF files that mutagen can't seem to read. I'm reading them like this: ``` tagfile = mutagen.File(file_path) ``` But then tagfile is an empty object. See...
I'm writing tags to WAV files and most seem to work but a small number has trouble writing tags. I'm simply writing this tag: `mutagen.id3.TIT2(encoding=3, text="test")` and then calling `save()`...
``` Traceback (most recent call last): File "../tagger.py", line 39, in tags_modified = write.write_tags(args.path, track, args.only_fields, args.remove_coverart, args.coverart_replace) File "C:\Users\Alpha\workspace\tagger\write.py", line 25, in write_tags tags_modified = filetypes.flac.write_tags(tagfile, json, only_fields, remove_coverart,...
I've added a cover image using kid3 and when I read the tags using `mutagen.File(file_path)` and simply print that, there is no APIC frame in there. The thing is that...
I have a file that contains two GEOB tags of the same name. Mutagen seems to read only one of them and I can't find a way to read the...