goblin-malin 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,132 @@
1
+ # PolyForm Noncommercial License 1.0.0
2
+
3
+ <https://polyformproject.org/licenses/noncommercial/1.0.0>
4
+
5
+ ## Acceptance
6
+
7
+ In order to get any license under these terms, you must agree
8
+ to them as both strict obligations and conditions to all
9
+ your licenses.
10
+
11
+ ## Copyright License
12
+
13
+ The licensor grants you a copyright license for the
14
+ software to do everything you might do with the software
15
+ that would otherwise infringe the licensor's copyright
16
+ in it for any permitted purpose. However, you may
17
+ only distribute the software according to the
18
+ Distribution License section below, and you may only
19
+ make changes or new works based on the software according
20
+ to the Changes and New Works License section below.
21
+
22
+ ## Distribution License
23
+
24
+ The licensor grants you an additional copyright license
25
+ to distribute copies of the software. Your license
26
+ to distribute covers distributing the software with
27
+ changes and new works permitted by the
28
+ Changes and New Works License section below.
29
+
30
+ ## Notices
31
+
32
+ You must ensure that anyone who gets a copy of
33
+ any part of the software from you also gets a copy
34
+ of these terms or the URL for them above, as well as
35
+ copies of any plain-text lines beginning with `Required Notice:`
36
+ that the licensor provided with the software. For example:
37
+
38
+ > Required Notice: Copyright Yoyodyne, Inc. (http://example.com)
39
+
40
+ ## Changes and New Works License
41
+
42
+ The licensor grants you an additional copyright license to
43
+ make changes and new works based on the software for
44
+ any permitted purpose.
45
+
46
+ ## Patent License
47
+
48
+ The licensor grants you a patent license for the software that
49
+ covers patent claims the licensor can license, or becomes able
50
+ to license, that you would infringe by using the software.
51
+
52
+ ## Noncommercial Purposes
53
+
54
+ Any noncommercial purpose is a permitted purpose.
55
+
56
+ ## Personal Uses
57
+
58
+ Personal use for research, experiment, and testing for
59
+ the benefit of public knowledge, personal study,
60
+ private entertainment, hobby projects, amateur pursuits,
61
+ or religious observance, without any anticipated
62
+ commercial application, is use for a noncommercial purpose.
63
+
64
+ ## Noncommercial Organizations
65
+
66
+ Use by any charitable organization, educational institution,
67
+ public research organization, public safety or health
68
+ organization, environmental protection organization,
69
+ or government institution is use for a noncommercial
70
+ purpose regardless of the source of funding or obligations
71
+ resulting from the funding.
72
+
73
+ ## Fair Use
74
+
75
+ You may have "fair use" rights for the software under the
76
+ law. These terms do not limit them.
77
+
78
+ ## No Other Rights
79
+
80
+ These terms do not allow you to sublicense or transfer
81
+ any of your licenses to anyone else, or prevent the
82
+ licensor from granting licenses to anyone else. These
83
+ terms do not imply any other licenses.
84
+
85
+ ## Patent Defense
86
+
87
+ If you make any written claim that the software infringes
88
+ or contributes to infringement of any patent, your patent
89
+ license for the software granted under these terms ends
90
+ immediately. If your company makes such a claim, your
91
+ patent license ends immediately for work on behalf of
92
+ your company.
93
+
94
+ ## Violations
95
+
96
+ The first time you are notified in writing that you have
97
+ violated any of these terms, or done anything with the
98
+ software not covered by your licenses, your licenses
99
+ can nonetheless continue if you come into full compliance
100
+ with these terms, and take practical steps to correct
101
+ past violations, within 32 days of receiving notice.
102
+ Otherwise, all your licenses end immediately.
103
+
104
+ ## No Liability
105
+
106
+ *As far as the law allows, the software comes as is,
107
+ without any warranty or condition, and the licensor
108
+ will not be liable to you for any damages arising out
109
+ of these terms or the use or nature of the software,
110
+ under any kind of legal claim.*
111
+
112
+ ## Definitions
113
+
114
+ The **licensor** is the individual or entity offering
115
+ these terms, and the **software** is the software the
116
+ licensor makes available under these terms.
117
+
118
+ **You** refers to the individual or entity agreeing
119
+ to these terms.
120
+
121
+ **Your company** is any legal entity, sole proprietorship,
122
+ or other kind of organization that you work for, plus all
123
+ organizations that have control over, are under the control of,
124
+ or are under common control with that organization. **Control**
125
+ means ownership of substantially all the assets of an entity,
126
+ or the power to direct its management and legal affairs.
127
+
128
+ **Your licenses** are all the licenses granted to you for the
129
+ software under these terms.
130
+
131
+ **Use** means anything you do with the software requiring
132
+ one of your licenses.
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # goblin-malin 😉
2
+
3
+ > [!CAUTION]
4
+ > **This project is in early, early, early development.**<br>
5
+ > Be aware that the data model can change drastically, making previous versions incompatible with the current one. Use at your own risk 😉
6
+
7
+ A keyboard-driven terminal UI for downloading and tagging music tracks with metadata. Import links from Spotify, YouTube, the app cross-references metadata across providers, finds the best download source (only yt-dlp for now), and saves it to disk with clean tags.
8
+
9
+ ## Installation
10
+
11
+ No easy installation yet. You can only run the project as developer:
12
+
13
+ 1. Clone the repository and open a terminal in the project directory
14
+ 2. Install [Node.js](https://nodejs.org/en/download) and [yarn](https://classic.yarnpkg.com/lang/en/docs/install)
15
+ 3. Install dependencies in the project directory: `yarn install`
16
+ 4. Run the application: `yarn run dev`
17
+
18
+ ## Steps
19
+
20
+ - Import track URLs from compatible streaming platforms with `Ctrl+V`:
21
+ - Spotify
22
+ - YouTube
23
+ - System fetches primary metadata from the corresponding URL platform
24
+ - System discovers the same track on other platforms (cross-referencing via ISRC or track/artist name)
25
+ - Filters/orders metadata sources by relevance or leaves the default ranking chosen by the system (use `TAB` key to switch the focused window).
26
+ - System downloads matching tracks from available download providers:
27
+ - yt-dlp
28
+ - User selects the best download source and previews the audio
29
+ - User saves the file to the desired folder with embedded tags
30
+
31
+ <img src="docs\screenshots\2026-05-08-download-view.png" width="100%"/>