#AI video generation
1 messages · Page 1 of 1 (latest)
Hi @low jetty. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
You have two main options, depending on whether you want to use the Sora app or the developer API:
-
Sora app / sora.com (no coding)
- Sora 2 is available via the Sora iOS app, Sora 2 Android app, and on the web at sora.com. [Getting started]
- In the app or on sora.com, tap or click “+” (Create), then choose to describe a new video and type your prompt; Sora will generate a short video with synced audio. [Getting started; Creating videos]
-
OpenAI API (for developers)
- Use the Video API with the
sora-2orsora-2-promodels. [Video overview; Sora 2; Sora 2 Pro] - Send a
POSTrequest to<https://api.openai.com/v1/videos> with your prompt, for example:[Generate video; API reference]curl -X POST "<https://api.openai.com/v1/videos"> \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: multipart/form-data" \ -F prompt="Wide tracking shot of a teal coupe driving through a desert highway, heat ripples visible, hard sun overhead." \ -F model="sora-2" \ -F size="1280x720" \ -F seconds="8"
- Use the Video API with the