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
Copy
Ask AI
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"
],
"text_lines": 1,
"text_align": "center",
"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,
"playback_mode": "cycle",
"cycle_time": 15000
}'
Copy
Ask AI
{
"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"
],
"text_lines": null,
"text_align": "start",
"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,
"playback_mode": "cycle",
"cycle_time": 15000
}
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?
Copy
Ask AI
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"
],
"text_lines": 1,
"text_align": "center",
"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,
"playback_mode": "cycle",
"cycle_time": 15000
}'
Copy
Ask AI
{
"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"
],
"text_lines": null,
"text_align": "start",
"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,
"playback_mode": "cycle",
"cycle_time": 15000
}
Assistant
Responses are generated using AI and may contain mistakes.