Live Transcoding Profiles/FiltersUpdate Transcoding Filter

Update Transcoding Filter

Edit Transcoding Profile Filter

curl -X POST "https://api.5centscdn.com/v2/streams/settings/filters/1" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "name": "My Logo Watermark",
  "args": {
    "filter": "overlay",
    "url": "https://cdn.example.com/logo.png",
    "scale": "5",
    "position": "Center",
    "blink": "5/5",
    "text": "www.5centscdn.com",
    "fontsize": "15",
    "fontcolor": "#FF9507"
  }
}'
{
  "result": "success",
  "message": "Transcoding Settings Updated"
}
POST
/streams/settings/filters/{filterid}
POST
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

path
filteridstring
Required

Id of the Transcode Profile filter

Content-Typestring
Required

The media type of the request body

Options: application/json
namestring
Required

Display name of the filter. This is read from the existing filter and cannot be changed via this endpoint.

argsobject
Required

Flat filter configuration object. The filter field inside args identifies the type and determines which other fields apply. Allowed filter values: overlay, drawtext, img2video, videoloop.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

filteridstring
Required

Id of the Transcode Profile filter

Example:
1

Body

application/json
namestring
Required

Display name of the filter. This is read from the existing filter and cannot be changed via this endpoint.

Example:
My Logo Watermark
argsobject
Required

Flat filter configuration object. The filter field inside args identifies the type and determines which other fields apply. Allowed filter values: overlay, drawtext, img2video, videoloop.

Responses

resultstring

Status of the API response.

messagestring

Human-readable message describing the result.