-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapi.oas3.yaml
More file actions
471 lines (332 loc) · 14.3 KB
/
api.oas3.yaml
File metadata and controls
471 lines (332 loc) · 14.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
openapi: 3.0.1
info:
title: Shotstack
version: v1
description: |
Shotstack is a video, image and audio editing service that allows for the automated generation of videos, images and audio using JSON and a RESTful API.
You arrange and configure an edit and POST it to the API which will render your media and provide a file location when complete.
For more details visit [shotstack.io](https://shotstack.io) or checkout our [getting started](https://shotstack.io/docs/guide/) documentation.
There are three API's, one for editing and generating assets (Edit API), one for managing hosted assets (Serve API) and one for ingesting and transforming source assets (Ingest API).
Each API has it's own base URL and collection of endpoints. Each API uses the same set of API keys.
**[Edit API](#shotstack-edit)** - [https://api.shotstack.io/edit/{version}](#)<br>
Edit videos, images and audio assets in the cloud using a simple JSON schema and templates.
**[Serve API](#shotstack-serve)** - [https://api.shotstack.io/serve/{version}](#)<br>
Inspect and manage the hosting of assets generated by the Edit and Ingest APIs.
**[Ingest API](#shotstack-ingest)** - [https://api.shotstack.io/ingest/{version}](#)<br>
Ingest (upload, store and transform) source footage, images, audio and fonts to be used by the Edit API.
servers:
- url: https://api.shotstack.io/edit/{version}
variables:
version:
description: >-
Set the stage to **v1** for production usage without watermarks. Set to **stage** to use the development sandbox.
enum:
- v1
- stage
default: v1
- url: https://api.shotstack.io/serve/{version}
variables:
version:
description: >-
Set the stage to **v1** for production usage. Set to **stage** to use the development sandbox.
enum:
- v1
- stage
default: v1
- url: https://api.shotstack.io/ingest/{version}
variables:
version:
description: >-
Set the stage to **v1** for production usage. Set to **stage** to use the development sandbox.
enum:
- v1
- stage
default: v1
tags:
- name: Edit
description: >-
The Edit API is used to edit videos, images and audio files in the cloud using a simple to understand JSON schema.
Compose an edit using tracks, clips and assets and add transitions, filters, overlays and text. Finally send the
JSON to the Edit API to be rendered.
- name: Serve
description: >-
Assets generated by the Edit API or uploaded via the Ingest API are sent to the Serve API. The Serve API includes
a simple hosting service with a CDN or you can send assets to third party services like AWS S3 or Mux. The Serve
API includes endpoints to look up assets, where they are hosted and their status.
- name: Ingest
description: >-
The Ingest API lets you upload and store your source footage and user generated content in close proximity to the
Edit API. Instead of hosting your own assets or building your own uploader you can use the Ingest API. The Ingest
API provides endpoints to fetch and upload files and check their status and URLs. All ingested files are available
directly from an S3 bucket URL or via CDN (Serve API).
paths:
/render:
$ref: "./paths/render.yaml"
/render/{id}:
$ref: "./paths/renderid.yaml"
/templates:
$ref: "./paths/templates.yaml"
/templates/{id}:
$ref: "./paths/templatesid.yaml"
/templates/render:
$ref: "./paths/templatesrender.yaml"
/probe/{url}:
$ref: "./paths/probe.yaml"
/assets/{id}:
$ref: "./paths/assetsid.yaml"
/assets/render/{id}:
$ref: "./paths/assetsrenderid.yaml"
/assets:
$ref: "./paths/assets.yaml"
/sources:
$ref: "./paths/sources.yaml"
/sources/{id}:
$ref: "./paths/sourcesid.yaml"
/upload:
$ref: "./paths/upload.yaml"
components:
schemas:
# Request schemas
Edit:
$ref: "./schemas/edit.yaml#/Edit"
Timeline:
$ref: "./schemas/timeline.yaml#/Timeline"
Soundtrack:
$ref: "./schemas/soundtrack.yaml#/Soundtrack"
Font:
$ref: "./schemas/font.yaml#/Font"
Track:
$ref: "./schemas/track.yaml#/Track"
Clip:
$ref: "./schemas/clip.yaml#/Clip"
Asset:
$ref: "./schemas/asset.yaml#/Asset"
VideoAsset:
$ref: "./schemas/videoasset.yaml#/VideoAsset"
ImageAsset:
$ref: "./schemas/imageasset.yaml#/ImageAsset"
TextAsset:
$ref: "./schemas/textasset.yaml#/TextAsset"
RichTextAsset:
$ref: "./schemas/richtextasset.yaml#/RichTextAsset"
AudioAsset:
$ref: "./schemas/audioasset.yaml#/AudioAsset"
ShapeAsset:
$ref: "./schemas/shapeasset.yaml#/ShapeAsset"
LumaAsset:
$ref: "./schemas/lumaasset.yaml#/LumaAsset"
CaptionAsset:
$ref: "./schemas/captionasset.yaml#/CaptionAsset"
RichCaptionAsset:
$ref: "./schemas/richcaptionasset.yaml#/RichCaptionAsset"
RichCaptionActiveFont:
$ref: "./schemas/richcaptionproperties.yaml#/RichCaptionActiveFont"
RichCaptionActive:
$ref: "./schemas/richcaptionproperties.yaml#/RichCaptionActive"
RichCaptionAnimation:
$ref: "./schemas/richcaptionproperties.yaml#/RichCaptionAnimation"
TextToImageAsset:
$ref: "./schemas/texttoimageasset.yaml#/TextToImageAsset"
ImageToVideoAsset:
$ref: "./schemas/imagetovideoasset.yaml#/ImageToVideoAsset"
TextToSpeechAsset:
$ref: "./schemas/texttospeechasset.yaml#/TextToSpeechAsset"
HtmlAsset:
$ref: "./schemas/htmlasset.yaml#/HtmlAsset"
TitleAsset:
$ref: "./schemas/titleasset.yaml#/TitleAsset"
SvgAsset:
$ref: "./schemas/svgasset.yaml#/SvgAsset"
Transition:
$ref: "./schemas/transition.yaml#/Transition"
Offset:
$ref: "./schemas/offset.yaml#/Offset"
Crop:
$ref: "./schemas/crop.yaml#/Crop"
Transformation:
$ref: "./schemas/transformation.yaml#/Transformation"
RotateTransformation:
$ref: "./schemas/rotatetransformation.yaml#/RotateTransformation"
SkewTransformation:
$ref: "./schemas/skewtransformation.yaml#/SkewTransformation"
FlipTransformation:
$ref: "./schemas/fliptransformation.yaml#/FlipTransformation"
TextFont:
$ref: "./schemas/textproperties.yaml#/TextFont"
TextBackground:
$ref: "./schemas/textproperties.yaml#/TextBackground"
TextAlignment:
$ref: "./schemas/textproperties.yaml#/TextAlignment"
RichTextFont:
$ref: "./schemas/richtextproperties.yaml#/RichTextFont"
RichTextStyle:
$ref: "./schemas/richtextproperties.yaml#/RichTextStyle"
RichTextGradient:
$ref: "./schemas/richtextproperties.yaml#/RichTextGradient"
RichTextStroke:
$ref: "./schemas/richtextproperties.yaml#/RichTextStroke"
RichTextShadow:
$ref: "./schemas/richtextproperties.yaml#/RichTextShadow"
RichTextBackground:
$ref: "./schemas/richtextproperties.yaml#/RichTextBackground"
RichTextAlignment:
$ref: "./schemas/richtextproperties.yaml#/RichTextAlignment"
RichTextAnimation:
$ref: "./schemas/richtextproperties.yaml#/RichTextAnimation"
CaptionFont:
$ref: "./schemas/captionproperties.yaml#/CaptionFont"
CaptionBackground:
$ref: "./schemas/captionproperties.yaml#/CaptionBackground"
CaptionMargin:
$ref: "./schemas/captionproperties.yaml#/CaptionMargin"
ChromaKey:
$ref: "./schemas/chromakey.yaml#/ChromaKey"
Tween:
$ref: "./schemas/tween.yaml#/Tween"
MergeField:
$ref: "./schemas/mergefield.yaml#/MergeField"
Output:
$ref: "./schemas/output.yaml#/Output"
Size:
$ref: "./schemas/size.yaml#/Size"
Range:
$ref: "./schemas/range.yaml#/Range"
Poster:
$ref: "./schemas/poster.yaml#/Poster"
Thumbnail:
$ref: "./schemas/thumbnail.yaml#/Thumbnail"
Destinations:
$ref: "./schemas/destinations.yaml#/Destinations"
ShotstackDestination:
$ref: "./schemas/destinations/shotstackDestination.yaml#/ShotstackDestination"
MuxDestination:
$ref: "./schemas/destinations/muxDestination.yaml#/MuxDestination"
MuxDestinationOptions:
$ref: "./schemas/destinations/muxDestinationOptions.yaml#/MuxDestinationOptions"
S3Destination:
$ref: "./schemas/destinations/s3Destination.yaml#/S3Destination"
S3DestinationOptions:
$ref: "./schemas/destinations/s3DestinationOptions.yaml#/S3DestinationOptions"
GoogleCloudStorageDestination:
$ref: "./schemas/destinations/googleCloudStorageDestination.yaml#/GoogleCloudStorageDestination"
GoogleCloudStorageDestinationOptions:
$ref: "./schemas/destinations/googleCloudStorageDestinationOptions.yaml#/GoogleCloudStorageDestinationOptions"
GoogleDriveDestination:
$ref: "./schemas/destinations/googleDriveDestination.yaml#/GoogleDriveDestination"
GoogleDriveDestinationOptions:
$ref: "./schemas/destinations/googleDriveDestinationOptions.yaml#/GoogleDriveDestinationOptions"
VimeoDestination:
$ref: "./schemas/destinations/vimeoDestination.yaml#/VimeoDestination"
VimeoDestinationOptions:
$ref: "./schemas/destinations/vimeoDestinationOptions.yaml#/VimeoDestinationOptions"
VimeoDestinationPrivacyOptions:
$ref: "./schemas/destinations/vimeoDestinationPrivacyOptions.yaml#/VimeoDestinationPrivacyOptions"
Template:
$ref: "./schemas/template.yaml#/Template"
TemplateRender:
$ref: "./schemas/templaterender.yaml#/TemplateRender"
# Ingest schemas
Source:
$ref: "./schemas/ingest/source.yaml#/Source"
Outputs:
$ref: "./schemas/ingest/outputs.yaml#/Outputs"
Rendition:
$ref: "./schemas/ingest/rendition.yaml#/Rendition"
Transcription:
$ref: "./schemas/ingest/transcription.yaml#/Transcription"
Speed:
$ref: "./schemas/ingest/speed.yaml#/Speed"
Enhancements:
$ref: "./schemas/ingest/enhancements.yaml#/Enhancements"
AudioEnhancement:
$ref: "./schemas/ingest/enhancements/audioEnhancement.yaml#/AudioEnhancement"
DolbyEnhancement:
$ref: "./schemas/ingest/enhancements/audio/dolbyEnhancement.yaml#/DolbyEnhancement"
DolbyEnhancementOptions:
$ref: "./schemas/ingest/enhancements/audio/dolbyEnhancementOptions.yaml#/DolbyEnhancementOptions"
# Serve schemas
Transfer:
$ref: "./schemas/serve/transfer.yaml#/Transfer"
# Edit response schemas
QueuedResponse:
$ref: "./schemas/responses/queuedresponse.yaml#/QueuedResponse"
QueuedResponseData:
$ref: "./schemas/responses/queuedresponsedata.yaml#/QueuedResponseData"
RenderResponse:
$ref: "./schemas/responses/renderresponse.yaml#/RenderResponse"
RenderResponseData:
$ref: "./schemas/responses/renderresponsedata.yaml#/RenderResponseData"
TemplateResponse:
$ref: "./schemas/responses/templateresponse.yaml#/TemplateResponse"
TemplateResponseData:
$ref: "./schemas/responses/templateresponsedata.yaml#/TemplateResponseData"
TemplateDataResponse:
$ref: "./schemas/responses/templatedataresponse.yaml#/TemplateDataResponse"
TemplateDataResponseData:
$ref: "./schemas/responses/templatedataresponsedata.yaml#/TemplateDataResponseData"
TemplateListResponse:
$ref: "./schemas/responses/templatelistresponse.yaml#/TemplateListResponse"
TemplateListResponseData:
$ref: "./schemas/responses/templatelistresponsedata.yaml#/TemplateListResponseData"
TemplateListResponseItem:
$ref: "./schemas/responses/templatelistresponseitem.yaml#/TemplateListResponseItem"
ProbeResponse:
$ref: "./schemas/responses/proberesponse.yaml#/ProbeResponse"
AssetResponse:
$ref: "./schemas/responses/assetresponse.yaml#/AssetResponse"
AssetRenderResponse:
$ref: "./schemas/responses/assetrenderresponse.yaml#/AssetRenderResponse"
AssetResponseData:
$ref: "./schemas/responses/assetresponsedata.yaml#/AssetResponseData"
AssetResponseAttributes:
$ref: "./schemas/responses/assetresponseattributes.yaml#/AssetResponseAttributes"
# Serve response schemas
TransferResponse:
$ref: "./schemas/serve/responses/transferresponse.yaml#/TransferResponse"
TransferResponseData:
$ref: "./schemas/serve/responses/transferresponsedata.yaml#/TransferResponseData"
TransferResponseAttributes:
$ref: "./schemas/serve/responses/transferresponseattributes.yaml#/TransferResponseAttributes"
# Ingest response schemas
QueuedSourceResponse:
$ref: "./schemas/ingest/responses/queuedsourceresponse.yaml#/QueuedSourceResponse"
QueuedSourceResponseData:
$ref: "./schemas/ingest/responses/queuedsourceresponsedata.yaml#/QueuedSourceResponseData"
SourceListResponse:
$ref: "./schemas/ingest/responses/sourcelistresponse.yaml#/SourceListResponse"
SourceResponse:
$ref: "./schemas/ingest/responses/sourceresponse.yaml#/SourceResponse"
SourceResponseData:
$ref: "./schemas/ingest/responses/sourceresponsedata.yaml#/SourceResponseData"
SourceResponseAttributes:
$ref: "./schemas/ingest/responses/sourceresponseattributes.yaml#/SourceResponseAttributes"
OutputsResponse:
$ref: "./schemas/ingest/responses/outputsresponse.yaml#/OutputsResponse"
RenditionResponseAttributes:
$ref: "./schemas/ingest/responses/renditionresponseattributes.yaml#/RenditionResponseAttributes"
UploadResponse:
$ref: "./schemas/ingest/responses/uploadresponse.yaml#/UploadResponse"
UploadResponseData:
$ref: "./schemas/ingest/responses/uploadresponsedata.yaml#/UploadResponseData"
UploadResponseAttributes:
$ref: "./schemas/ingest/responses/uploadresponseattributes.yaml#/UploadResponseAttributes"
IngestErrorResponse:
$ref: "./schemas/ingest/responses/ingesterrorresponse.yaml#/IngestErrorResponse"
IngestErrorResponseData:
$ref: "./schemas/ingest/responses/ingesterrorresponsedata.yaml#/IngestErrorResponseData"
responses: {}
parameters: {}
examples: {}
requestBodies: {}
headers: {}
securitySchemes:
DeveloperKey:
description: >-
Set the **x-api-key** header with your provided key for the correct
environment (v1 or stage). Include the header in all calls to the API
that are secured with a key.
type: apiKey
in: header
name: x-api-key
links: {}
callbacks: {}