import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.videos.subtitles.delete(
id=0,
video_id=0,
)
{
"status": 404,
"error": "Not Found. Entity you are looking for was not found, please check the initial parameters"
}
Subtitles
Delete subtitle
Delete specified video subtitle
DELETE
/
streaming
/
videos
/
{video_id}
/
subtitles
/
{id}
Python
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.videos.subtitles.delete(
id=0,
video_id=0,
)
{
"status": 404,
"error": "Not Found. Entity you are looking for was not found, please check the initial parameters"
}