Last active
April 20, 2025 02:45
-
-
Save PBXg33k/a6c189f108e22cea0255 to your computer and use it in GitHub Desktop.
MP3Tag - VocaDB Tag Source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ################################################################### | |
# Mp3tag Tag Source for VocaDB | |
# | |
# Search by ALBUM | |
# | |
# This file should be stored in your tag sources sources directory | |
# %APPDATA%\Mp3tag\data\sources | |
# and requires Mp3tag v2.64 or above. | |
# [2015-08-31] v1.00 | |
# | |
# ################################################################### | |
[Name]=VocaDB | |
[BasedOn]=www.vocadb.net | |
[IndexUrl]=http://www.vocadb.net/api/albums?fields=AdditionalNames,Tags,Tracks,Names,MainPicture&nameMatchMode=Auto&maxResults=50&preferAccurateMatches=true&getTotalCount=true&lang=Romaji&query=%s | |
[AlbumUrl]=http://www.vocadb.net/api/albums/ | |
[WordSeparator]=%20 | |
[IndexFormat]=%Artist%|%Album%|%Release_Date%|%Catalog_Number%|%_preview%|%_url%|%tracks% | |
[SearchBy]=%album% | |
[UserAgent]=1 | |
[Encoding]=url-utf-8 | |
[ParserScriptIndex]=... | |
# ################################################################### | |
# I N D E X | |
# ################################################################### | |
# debug "on" "c:\\tmp\\vocadb.json" "5" | |
json "ON" | |
json_select "totalCount" | |
ifnot "0" | |
json_foreach "items" | |
# Artist | |
json_select "artistString" | |
#sayregexp ".+?(?= -.*)" | |
sayrest | |
say "|" | |
# Album | |
json_select "defaultName" | |
#sayregexp "(?<= - ).*" | |
sayrest | |
say "|" | |
# ReleaseDate | |
json_select_object "releaseDate" | |
json_select "formatted" | |
sayrest | |
say "|" | |
json_unselect_object | |
# Catalog_Number | |
json_select "catalogNumber" | |
sayrest | |
say "|" | |
# Preview | |
say "http://www.vocadb.net/Al/" | |
json_select "id" | |
sayrest | |
say "|" | |
# URL | |
json_select "id" | |
sayrest | |
say "?fields=Tracks,Names&lang=Romaji" | |
say "|" | |
# Tracks | |
json_foreach "tracks" | |
set "t_tracks" | |
json_select "trackNumber" | |
outputto "t_tracks" | |
json_foreach_end | |
outputto "Output" | |
sayrest | |
saynewline | |
json_foreach_end | |
endif | |
[ParserScriptAlbum]=... | |
# ################################################################### | |
# A L B U M | |
# ################################################################### | |
json "ON" | |
# debug "on" "c:\\tmp\\vocadb_single.json" "5" | |
json_select_object "items" | |
# Album | |
outputto "ALBUM" | |
json_select "name" | |
sayrest | |
# VocaDB_ID | |
outputto "VOCADB_ID" | |
json_select "id" | |
sayrest | |
# Coverurl | |
outputto "coverurl" | |
json_select "id" | |
say "http://vocadb.net/Album/CoverPicture/" | |
sayrest | |
# Catalog Number | |
outputto "CATALOGID" | |
json_select "catalogNumber" | |
#json_select_many "labels" "catno" ", " | |
sayrest | |
# Publisher | |
outputto "PUBLISHER" | |
json_select_many "labels" "name" ", " | |
sayrest | |
# Media Type | |
outputto "MEDIATYPE" | |
json_select "discType" | |
sayrest | |
# Year | |
outputto "YEAR" | |
json_select_object "releaseDate" | |
json_select "year" | |
sayrest | |
json_unselect_object | |
outputto "ALBUMARTIST" | |
json_select "artistString" | |
sayrest | |
# Names and sortnames | |
json_foreach "names" | |
json_select "language" | |
if "English" | |
outputto "ALBUMSORT" | |
json_select "value" | |
sayrest | |
endif | |
json_foreach_end | |
# Tracks | |
json_foreach "tracks" | |
outputto "TRACKS" | |
json_select "name" | |
sayrest | |
say "|" | |
json_select_object "song" | |
outputto "_LENGTH" | |
json_select "lengthSeconds" | |
sayrest | |
say "|" | |
outputto "Artist" | |
json_select "artistString" | |
sayrest | |
say "|" | |
json_unselect_object | |
json_foreach_end | |
set "tmp_join" | |
### | |
# VocaDB specific tags | |
### | |
# Release event | |
outputto "VOCADB_RELEASE_EVENT" | |
json_select "releaseEvent" | |
sayrest | |
json_unselect_object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment