Subtitles
Every subtitle (including fan subs) that was uploaded to the original VLIVE site has been archived. They are available in two formats: .vtt and .srt.
To find whether subtitles exist for a video, use /video/{videoSeq}
or /post/{postId}
and look for the captions
field. If captions
does not exist, then there are no subtitles for the video.
The original source of the subtitles from the VLIVE CDN is included in the VLIVE Archive API because it is still accessible and you may use that as a mirror if you wish. Alternatively, it may be more convenient to use the provided file_name
as it is structured in a format ideal for archiving. The filename contains all the essential metadata on the subtitles itself, including the videoSeq
, type of subtitles, and language.
There are two ways to obtain the full URL from the provided file_name
.
Use the subtitle subdomain:
https://subtitle.vlivearchive.com/files/{file_name}
For example https://subtitle.vlivearchive.com/files/288383/288383.cp.en_US.vttUse the
/subtitles
path on the main site. That is,https://vlivearchive.com/subtitles/{file_name}
For example https://vlivearchive.com/subtitles/288383/288383.cp.en_US.vtt
To obtain the corresponding SRT file, simply replace the .vtt extension with .srt. For example, the above two links become
Under the hood, only the vtt file is actually stored (as this is the original file format used on the website and supplied by the CDN) and srt files are dynamically generated/converted when requested.
Note: The field subtitles
has been deprecated and the data contained within it is stale and no longer usable.
Last updated