curl --location --request PUT 'https://api.tenbyte.io/v1/admin/encoding-presets/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"tenant_id": "tenant_123",
"name": "mp4-720p-archive",
"version": "v1",
"description": "Single-file MP4 output for download",
"preset_config": {
"version": "v1",
"container": "mp4",
"video_codec": "h264",
"audio_codec": "aac",
"width": 1280,
"height": 720,
"bitrate_kbps": 3500,
"fps": 30,
"profile": "high",
"audio": {
"bitrate_kbps": 128,
"channels": 2
}
},
"active": true,
"is_public": false
}'