Jan Metzger
Jan Metzger
This is my config, maybe it can help you. ``` location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $http_host; proxy_pass http://127.0.0.1:3006; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }...
Hi @deanbenazic we currently only support v2 tags, I think I accidentally removed the note from the README.md at some point, I'm going to add it back
Interesting problem, some initial thoughts I'm having: - The length should definitely be maxed so the number cannot overflow - Should we still write more than 255 entries? - Can...
> I think instead of entry count you can get the size of the frame and read that many bytes (minus header size and whatever else). The frames are included...
Yes, but there can be other tags inside of the CTOC frame, not after it. In my example above, the size of the full TIT2 frame would be included in...
I think they are allowed, the spec says the IDs must be unique only in respect to the other element IDs. We also can't check if the start of a...
Hey, the master branch is not ready for publishing, but the fix can be made in the 0.2 branch and published as 0.2.7. I'll try to change it this weekend,...
This is a problem with the invert filter that RR applies when the sidebar is dark and the text should be bright (or the other way). When the background is...
I think react-native will always fail to execute with node-id3 due to the fs/zlib module import. I'm not sure if there are ways to replace them at compile-time with react-native-fs/react-native-level-fs/react-native-zlib,...
Not sure what the problem is then, sorry. As a workaround, you can also pass a buffer to ID3.read() instead of a filepath. Basically, read the file with react-native-fs and...