Getting started
Content
- Articles
- Pronunciation rules
- Summarization settings
- Video settings
Distribution
- Player
- Playlists
Analytics
- Analytics
Monetization
- Ads
Organization
- Projects
Video settings
Update video settings
Update the video settings for your project
PUT
/
projects
/
{project_id}
/
video_settings
curl --request PUT \
--url https://api.beyondwords.io/v1/projects/{project_id}/video_settings \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"enabled": true,
"logo_image_url": null,
"logo_image_position": "top-right",
"background_color": "white",
"text_background_color": "rgba(255, 255, 255, 0.88)",
"text_color": "black",
"text_highlight_color": "linear-gradient(to right, #933AFB, #FB3A41)",
"text_fonts": [
"Inter-Medium.ttf",
"NotoSansSC-Medium.ttf",
"NotoSansJP-Medium.ttf",
"NotoSansHebrew-Medium.ttf"
],
"waveform_color": "linear-gradient(to right, #933AFB, #FB3A41)",
"content_image_enabled": true,
"image_extraction_enabled": true,
"pan_and_zoom_enabled": true,
"audio_and_waveform_enabled": true,
"text_captions_enabled": true
}'
{
"enabled": true,
"logo_image_url": "https://example.com/logo.png",
"logo_image_position": "top-right",
"background_color": "white",
"text_background_color": "rgba(255, 255, 255, 0.88)",
"text_color": "black",
"text_highlight_color": "#0cf",
"text_fonts": [
"Inter-Medium.ttf",
"NotoSansSC-Medium.ttf",
"NotoSansJP-Medium.ttf",
"NotoSansHebrew-Medium.ttf"
],
"waveform_color": "linear-gradient(to right, red, blue)",
"content_image_enabled": true,
"image_extraction_enabled": true,
"pan_and_zoom_enabled": true,
"audio_and_waveform_enabled": true,
"text_captions_enabled": true
}
Authorizations
Path Parameters
The numeric ID of your project
Body
application/json
Response
200
application/json
successful
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.beyondwords.io/v1/projects/{project_id}/video_settings \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"enabled": true,
"logo_image_url": null,
"logo_image_position": "top-right",
"background_color": "white",
"text_background_color": "rgba(255, 255, 255, 0.88)",
"text_color": "black",
"text_highlight_color": "linear-gradient(to right, #933AFB, #FB3A41)",
"text_fonts": [
"Inter-Medium.ttf",
"NotoSansSC-Medium.ttf",
"NotoSansJP-Medium.ttf",
"NotoSansHebrew-Medium.ttf"
],
"waveform_color": "linear-gradient(to right, #933AFB, #FB3A41)",
"content_image_enabled": true,
"image_extraction_enabled": true,
"pan_and_zoom_enabled": true,
"audio_and_waveform_enabled": true,
"text_captions_enabled": true
}'
{
"enabled": true,
"logo_image_url": "https://example.com/logo.png",
"logo_image_position": "top-right",
"background_color": "white",
"text_background_color": "rgba(255, 255, 255, 0.88)",
"text_color": "black",
"text_highlight_color": "#0cf",
"text_fonts": [
"Inter-Medium.ttf",
"NotoSansSC-Medium.ttf",
"NotoSansJP-Medium.ttf",
"NotoSansHebrew-Medium.ttf"
],
"waveform_color": "linear-gradient(to right, red, blue)",
"content_image_enabled": true,
"image_extraction_enabled": true,
"pan_and_zoom_enabled": true,
"audio_and_waveform_enabled": true,
"text_captions_enabled": true
}
Assistant
Responses are generated using AI and may contain mistakes.