{"id":17737589,"url":"https://github.com/timpulver/netlabel-list","last_synced_at":"2025-05-12T20:54:30.064Z","repository":{"id":48950423,"uuid":"87580840","full_name":"timpulver/netlabel-list","owner":"timpulver","description":"A list of active and inactive netlabels in JSON-format","archived":false,"fork":false,"pushed_at":"2025-02-15T19:58:03.000Z","size":388,"stargazers_count":6,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-10T12:47:40.993Z","etag":null,"topics":["data","data-set","json","label","list","music","netaudio","netlabel"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/timpulver.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-07T19:37:51.000Z","updated_at":"2025-02-15T19:58:06.000Z","dependencies_parsed_at":"2024-09-15T19:47:09.541Z","dependency_job_id":null,"html_url":"https://github.com/timpulver/netlabel-list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timpulver%2Fnetlabel-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timpulver%2Fnetlabel-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timpulver%2Fnetlabel-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timpulver%2Fnetlabel-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timpulver","download_url":"https://codeload.github.com/timpulver/netlabel-list/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253822391,"owners_count":21969830,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data","data-set","json","label","list","music","netaudio","netlabel"],"created_at":"2024-10-26T01:22:36.886Z","updated_at":"2025-05-12T20:54:30.035Z","avatar_url":"https://github.com/timpulver.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Netlabel-List\n\nList of netlabels (active and inactive) and their URLs.\nBased on [NetlabelList](https://github.com/nsorog/NetlabelList) / [Acts of Silence](http://www.actsofsilence.com/netlabels/) (offline) by [David Nemeth (dpnem)](https://github.com/dpnem).\n\n### Why another netlabel-list?\n\nThe *Acts of Silence*-list contains unstructured data, which makes it hard to explore all netlabels that e.g. release *Experimental* music, or that are based in *France*. Filtering is not possible.\n\nFor this reason I have converted the original *Acts of Silence*-list to JSON-format, which makes it easy to build upon, filter the results or create data visualisations with.\n\n## Example Netlabel\n\n```\n{\n  \"label_name\": \"Yarn Audio\",\n  \"activity_state\": \"active\",\n  \"countries\": [\n    \"Germany\"\n  ],\n  \"genres\": [\n    \"Bass Music\",\n    \"House\",\n    \"Techno\",\n    \"Experimental\",\n    \"Ambient\",\n    \"Dark Ambient\",\n    \"Juke\"\n  ],\n  \"urls\": {\n    \"bandcamp\": \"https://yarnaudio.bandcamp.com/\",\n    \"twitter\": \"https://twitter.com/YarnAudio\",\n    \"rss\": \"http://yarnaudio.com/feed\",\n    \"internet_archive\": \"https://archive.org/details/yarnaudio\",\n    \"facebook\": \"https://www.facebook.com/YarnAudio\",\n    \"soundcloud\": \"https://soundcloud.com/yarn-audio\",\n    \"homepage\": \"http://yarnaudio.com\"\n  }\n}\n```\n\n## Fields\n\n### Label name\nKey: `label_name`  \nType: *String*  \nExample: `\"Yarn Audio\"`  \n\n### Activity state\nKey: `activity_state`  \nType: *String*  \nValue: Either `\"active\"` or `\"inactive\"`  \nExample: `\"active\"`   \n\n### Countries\nKey: `countries`  \nType: *Array*  \nExample:    \n  \n```\n\"countries\": [\n  \"Germany\"\n],\n```\n  \nIn contrast to traditional labels, which are mostly based in a single country, many netlabels are based in multiple countries.  \n*Please note:* Even if a label is associated only with *one* country, it must be specified as an Array to be consistent.\n \n### Description\nKey: `description`  \nType: *String*  \nExample: `\"Monthly upbeat compilations\"`  \n\n### Genres\nKey: `genres`  \nType: *Array*  \nExample:  \n  \n```\n\"genres\": [\n  \"Ambient\",\n  \"Bass Music\",\n  \"Experimental\"\n]\n```\n\nFor electronic-subgenres the styles from Discogs are being used – [Electronic Styles](https://reference.discogslabs.com/browse/style).\n\nIn addition to that the following styles were added:\n\n- `\"8-Bit\"`\n- `\"Lo-Bit\"`\n- `\"Live\"`\n- `\"Warm\"`\n- `\"Melodic\"`\n- `\"Juke\"`\n\nDon’t enter `\"Multiple Genres\"` or something similar. List the individual genres or leave it empty (`\"genres\": []`).\n\n\n### URLs\nKey: `urls`  \nType: *Object*  \nExample:  \n\n```\n\"urls\": {\n  \"bandcamp\": \"https://yarnaudio.bandcamp.com/\",\n  \"twitter\": \"https://twitter.com/YarnAudio\",\n  \"rss\": \"http://yarnaudio.com/feed\",\n  \"release_rss\": \"http://example.com/release/feed\",\n  \"internet_archive\": \"https://archive.org/details/yarnaudio\",\n  \"facebook\": \"https://www.facebook.com/YarnAudio\",\n  \"soundcloud\": \"https://soundcloud.com/yarn-audio\",\n  \"homepage\": \"http://yarnaudio.com\"\n}\n```\n\n#### URL keys\n\n- `homepage`: Main website of the netlabel, for example `http://yarnaudio.com`\n- `rss`: RSS feed, which people can subscribe to, for example `\"http://yarnaudio.com/feed\"`\n- `release_rss`: An RSS feed that only lists netlabel releases `\"http://example.com/release/feed\"`\n- `bandcamp`: [Bandcamp](http://bandcamp.com/) profile, for example `\"https://yarnaudio.bandcamp.com/\"`\n- `soundcloud`: [Soundcloud](http://soundcloud.com/) profile, for example `\"https://soundcloud.com/yarn-audio\"`\n- `free_music_archive`: [Free Music Archive](http://freemusicarchive.org/) profile, for example `\"https://soundcloud.com/yarn-audio\"`\n- `sonicsquirrel`: [Sonicsquirrel](http://sonicsquirrel.net/) profile, for example `\"http://sonicsquirrel.net/detail/label/Yarn_Audio/\"`\n- `facebook`: [Facebook](https://www.facebook.com/) profile, for example `\"https://www.facebook.com/YarnAudio\"`\n- `twitter` – [Twitter](https://twitter.com/) profile, for example `\"https://twitter.com/YarnAudio\"`\n- `netlabel_archive` - [netlabelarchive.org](https://netlabelarchive.org/) archive page, for example `https://netlabelarchive.org/netlabels/ansiform/`\n- `internet_archive` – [archive.org](https://archive.org/) profile, for example `https://archive.org/details/yarnaudio`\n- `instagram` - [Instagram](https://instagram.com) profile, for example `\"https://instagram.com/blocsonic\"`\n\n## Contributions\n\nContributions are very welcome!  \n\n**Before adding a new netlabel please perform a search first to make sure it is not already in the list.**\n\n### How to make a contribution?\n\n- Open the netlabel list: [netlabels.json](https://github.com/timpulver/netlabel-list/blob/master/netlabels.json)\n- Click on the pen icon in the top right (\"Edit this file\")\n- Add / edit / delete stuff\n- To make sure your edits did not introduce any JSON syntax errors, copy and paste the complete file-contents into [JSONLint](http://jsonlint.com/). It will check if the file-format is still intact. When everything is okay it should report `Valid JSON`.\n- Click the \"Commit changes\" button below and send a pull request\n\n## Other Sources for Netlabel Information\n\nThe following list contains other netlabel-related websites which could be used to extend the list.\n\n### Archive.org\n\n- Get infos in JSON-format about a specific release, for example [archive.org/metadata/yarn014](http://archive.org/metadata/yarn014) returns the information for a release with the identifier `yarn014`\n- Netlabel-Overview: [archive.org/details/netlabels?and[]=mediatype%3A%22collection%22](https://archive.org/details/netlabels?and[]=mediatype%3A%22collection%22)\n- Archive.org also offers something like an API, which can be accessed here: [archive.org/advancedsearch.php#raw](https://archive.org/advancedsearch.php#raw)\n\n### Sonicsquirrel\n\n- No public API\n\n### Free Music Archive\n\n- Public API available: [freemusicarchive.org/api](https://freemusicarchive.org/api)\n\n### Clongclongmoo\n\n- Netlabel List: [clongclongmoo.org/labels](http://www.clongclongmoo.org/labels/)\n\n## License\n\n[CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/), by [Tim Pulver](https://timpulver.de/), based on [NetlabelList](https://github.com/nsorog/NetlabelList) / [Acts of Silence](http://www.actsofsilence.com/netlabels/) (offline) by [David Nemeth (dpnem)](https://github.com/dpnem) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimpulver%2Fnetlabel-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimpulver%2Fnetlabel-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimpulver%2Fnetlabel-list/lists"}