Roadmap v1.0
See original GitHub issueI just copied the goals into this issue to keep track of them. We can later just create a checklist out of them.
- Re-factoring:
- Move away from the
readstream
approach and use straight file access; a stream is very inefficient in some cases (cannot jump to the end of the file, without reading everything in between) and cumbersome in my opinion. For instance, if a FLAC file prefixed with an id3 header (bad practice, non-standard, but it is done) this code gets completely confused, because it expects mpeg. Moved to issue #7 - Use
Promises
.
- Move away from the
- Improve tests:
- Improve documentation:
- Write detailed documentation on the GitHib Wiki how the tag mapping is done
- New features / functionality:
Edit: Concerning the refactoring. It would probably be better to start from scratch and use the current code base as a reference. Changed the title to Roadmap v1.0. Refactoring will probably break the API. Bumping the version up might be a good idea.
Issue Analytics
- State:
- Created 6 years ago
- Comments:14 (9 by maintainers)
Top Results From Across the Web
Roadmap v1.0 - GitHub
An accessible browser compatible javascript command palette - Roadmap v1.0 · asabaylus/react-command-palette.
Read more >Early Access Roadmap - v1.0 - The Anacrusis
Early Access Roadmap - v1.0. January 6, 2022. As we enter Early Access/Game Preview, we wanted to let you know what our immediate...
Read more >Roadmap v1.0 - Notion
A new tool for teams & individuals that blends everyday work apps into one.
Read more >Roadmap to v1.0 - Get Help and Help Others - RedwoodJS ...
Defining 1.0 is hard. It's an organizational feat, a bit of a balancing act, and to top it all off, it's ongoing. Certain...
Read more >European Training Calendar - Roadmap v1.0 - SALTO-YOUTH
Roadmap v1.0. Training Course. 2-9 August 2018 | Eskisehir, Türkiye. To identify & develop youth entrepreneurial skills by focusing on topics such as...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
If JavaScript would run concurrent that would be an issue. But is doesn’t. So the whole test block will initialize, including event registration, without any interrupt (ref: Run-to-completion)… So the JavaScript parsing will start after that.
In other words, reading the audio file (by your OS and Node.js) may already happen in the background, but the event handling and parsing it with actual JavaScript will only occur when the previous event handling completed. And everything runs in this event manner, also the initialization of your unit test.
The test cases would a good starting point.
Regarding the sample files, most of the files I inherited and all files I added, are limited to a very small samples. I guess that is no copyright violation. Would be nice to shrink the larger ones.
The file starts to be parsed immediately. I would expect that the registration of the event handlers are done prior to the first callback. As far as I know JavaScript is single threaded; only asynchronous calls are executed in parallel. Its like a GUI thread.
I suggest to cut down the roadmap into smaller issues.
I will do my best write out some smaller improvements as well.
If you are not familiar with the tool already, please have a look at Picard. A lot of what I added to the original module is based on how this tool works. Try to add some meta-data to some of your music files. Don’t make the mistake to blindly update all your music file, do a single album at a time and review before saving. Select the release manually, Picard will pick one, even if it is unsure what to choose. This is where it all about, if you link with the correct release, it will MusicBrainz augment your music files with the right tags. Based on this identification, If updates are available, you can easily update the music files, or get additional which you cannot even store in meta tags.