✂️Subtitles
The Subtitles API enables the creation of subtitles in supported languages. It is accessible only after the video has finished processing and is ready for use. The API supports both the VTT and SRT formats.
API request
POST https://api.makereals.com/api/v1/videos/{videoID}/subtitles
{videoID} - should be replaced by the video id that you get from create video api
{
"language_code":"en",
"format":"vtt"
}
API Response
{
"language_code": "en",
"format": "vtt",
"url": "{{URL_FOR_SUBTITLES}}"
}
Supported languages and codes
english = "en"
spanish = "es"
german = "de"
portuguese = "pt"
italian = "it"
french = "fr"
dutch = "nl"
japanese = "ja"
turkish = "tr"
polish = "pl"
hungarian = "hu"
czech = "cz"
hebrew = "he"
chinese = "zh"
hindi = "hi"
russian = "ru"
korean = "ko"
arabic = "ar"
Last updated