#AI video generation

1 messages · Page 1 of 1 (latest)

low jetty
#

Where do I go to get SORA to generate AI videos from prompts given?

austere thunderBOT
#

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:

  1. 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]
  2. OpenAI API (for developers)

    • Use the Video API with the sora-2 or sora-2-pro models. [Video overview; Sora 2; Sora 2 Pro]
    • Send a POST request to <https://api.openai.com/v1/videos> with your prompt, for example:
      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"
      
      [Generate video; API reference]
#

If you tell me whether you prefer an app experience or an API/developer setup, I can point you to the exact next step.

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: