Supported streaming services

On this page

Media streaming service support on VocaDB is very extendable.

New services can be added as long as there’s a way to get the embeddable video ID. Other information such as video duration and author information is optional:

ServiceID formatID sourceAPI for media infoEmbed formatLibrary
YouTubekKjtPMktA3QURLFullHTML5 (iframe)
Vimeo1234567URLFullHTML5 (iframe)
SoundCloud244504967 hightrancesea/mirror-songAPIFullHTML5 (iframe)
NicoNicoDougasm28107817URLLimitedHTML5 (iframe)NicoApiClient
BiliBili4176277URLLimitedHTML5 (iframe)
Piaproqmlyzf3njdljhayxHTMLHTML5 (audio)PiaproClient
Bandcamp379042HTMLHTML5 (iframe)NYoutubeDL
Creofuga (deprecated)1234567URLHTML5 (iframe)

Ideally the PV ID and other metadata can be parsed from the URL and metadata (such as video title) can be parsed from the API.

API calls are generally cheap, while downloading and parsing HTML is more costly.

For SoundCloud we’re saving both the internal media ID and the URL, because conversion between those would not be possible without additional API calls. There is no easy way to navigate to SoundCloud by knowing just the media ID.


In order to add support for a new service to be embedded, we need a reliable way to get the embed code from the media URL. Usually the URL contains the ID that is also required by the embed code.

For example, YouTube URLs look like this https://youtu.be/AAABBBCCC

The embed code is https://www.youtube.com/embed/AAABBBCCC

This is the only mandatory thing. Additionally, VocaDB supports loading metadata for the media:

  • Title
  • Thumbnail
  • Upload date
  • Length
  • Author

This metadata is preferable, but not mandatory. In the optimal case, the service has a programmatic API for loading that metadata. HTML parsing may work if the HTML structure is simple enough, but there is always a risk of the parser breaking when the layout changes.

Artist autofill

Artists entries can be auto detected from the PV URLs while adding song entries. There are two separate methods for auto detecting artists:

  1. API-based: We can retrieve the channel id for most media services using an official API. The channel id is then used to find relevant artist entries using channel weblinks.
  2. Title based: Many song titles use the format “【artist name】 song title 【song type】“. This can be parsed using regular expressions to retrieve the title, song type and the voicebank.

Artist channel URL formats

YouTube has by far the most channel URL formats. It is currently recommended that the id based /channel/ url is always added to artist entries.

URLIDNameAuto-fillNotes
/channel/UCBR8-60-B28hp2BmDPdntcQUCBR8-60-B28hp2BmDPdntcQChannel URLYesThe UC prefix is sometimes omitted
/channel/@YouTubeYouTubeHandle URLNoThe handle can be changed by users
/c/YouTubeYouTubeCustom URLNoCustom URLs can no longer be set up or changed
/user/YouTubeYouTubeLegacy username URLNoOnly exist for accounts created between 2012-03-14 and approximately 2014-11-24

NicoNico assigns a numerical user id to every user.

URLIDNameAuto-fillNotes
nicovideo.jp/user/865591865591User URLYes

SoundCloud users can freely set and change their usernames. A permanent numerical user id exists, but it is currently not possible to retrieve the username from the user id without using the API.

URLIDNameAuto-fillNotes
soundcloud.com/mitchiemmitchiemUsername URLYes

BiliBili assigns a numerical user id to every user.

URLIDNameAuto-fillNotes
space.bilibili.com/56695265669526Space URLYes

Piapro users can choose their account name (piapro user ID) during account creation

URLIDNameAuto-fillNotes
piapro.jp/pp001001pp001001Piapro ID URLYes

We currently don’t support artist auto fill for Vimeo, Creofuga or Bandcamp song entries.

About VocaDB Staff Contact