#Ok

1 messages · Page 1 of 1 (latest)

fossil frigate
#

OK, then if it’s discontinued then how come in Sora AI the mobile app everyone else is like posting AI videos perfectly on YouTube TikTok and other discord things perfectly without any like you know thing going on like no problems how come they’re posting AI videos and I’m not are there any other AI app that has the power has sora

normal plazaBOT
#

Hi @fossil frigate. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

You’re running into two different things that are easy to mix up:

  1. Sora (OpenAI’s product) vs. “Sora AI” mobile apps

  2. Why others can still post Sora‑style videos

#
  1. Are there other apps “as powerful as Sora”?

If you’re specifically trying to use OpenAI’s Sora via API, the officially documented way (while it’s still available) is to call POST /v1/videos with model: "sora-2" or "sora-2-pro" and then fetch the result when the job completes.[[Generate a video](https://developers.openai.com/api/docs/guides/video-generation#generate-a-video)]

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

#

@fossil frigate Kapa.ai is still learning and improving, please let me know how I did by reacting below.

fossil frigate
#

@normal plaza so what apps are available then that generates AI like Sora

normal plazaBOT
#

Let me check the knowledge base for you again. One moment! :books:

#

The knowledge sources only describe OpenAI’s own video models and APIs. They do not list or compare third‑party apps, so I can’t reliably name other apps “like Sora.”

From the docs, what is available from OpenAI (until deprecation) is:

These are accessed via the OpenAI Videos API (POST /v1/videos with model: "sora-2" or "sora-2-pro").[[Video generation guide](https://developers.openai.com/api/docs/guides/video-generation#generate-a-video); [Videos reference](https://developers.openai.com/api/reference)]

However, the Sora 2 models and Videos API are deprecated and scheduled to shut down on September 24, 2026.[[Video deprecation notice](https://developers.openai.com/api/docs/guides/video-generation)]

Because the sources don’t cover non‑OpenAI products, I can’t say which external mobile or web apps are available or how they compare in power to Sora.

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

#

@fossil frigate Kapa.ai is still learning and improving, please let me know how I did by reacting below.

fossil frigate
#

@normal plaza OK so is Sora Sora two video API in the App Store or something

normal plazaBOT
#

Let me check the knowledge base for you again. One moment! :books:

#

No. Based on the docs, Sora 2 is an API model, not a standalone mobile app:

The knowledge sources do not mention any official “Sora” or “Sora 2” app on the App Store or Google Play. Any “Sora AI” app you see there is not documented in these sources, so I can’t confirm its relationship to OpenAI or its use of the Sora API.

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

#

@fossil frigate Kapa.ai is still learning and improving, please let me know how I did by reacting below.

fossil frigate
#

@normal plaza so then how can I make Sora AI videos again?

normal plazaBOT
#

Let me check the knowledge base for you again. One moment! :books:

#

You can only make “Sora AI”–style videos in the ways that are still officially supported in the docs:


1. Use the OpenAI Videos API (developer route)

Sora 2 and Sora 2 Pro are API models, not an app. To generate videos you (or an app you use) must call the Videos API:

  1. Create a video job

    from openai import OpenAI
    
    client = OpenAI()
    
    video = client.videos.create(
        model="sora-2",  # or "sora-2-pro"
        prompt="A video of a cool cat on a motorcycle in the night",
    )
    
    print("Video generation started:", video)
    

    This returns a job with an id and status like queued or in_progress.[[Generate video](https://developers.openai.com/api/docs/guides/video-generation#generate-a-video)]

  2. Wait for it to finish

    Poll GET /v1/videos/{video_id} or use the helper create_and_poll until status is completed.[[Monitor progress](https://developers.openai.com/api/docs/guides/video-generation#monitor-progress)]

  3. Download the MP4

    content = client.videos.download_content(video.id, variant="video")
    content.write_to_file("video.mp4")
    

    Or via curl: GET /v1/videos/{video_id}/content.[[Retrieve results](https://developers.openai.com/api/docs/guides/video-generation#retrieve-results)]

You can control model, size, and seconds in the API call (e.g. 720×1280, 1280×720, 4–20 seconds depending on model).[[Prompting guide](https://developers.openai.com/cookbook/examples/sora/sora2_prompting_guide#api-parameters)]


2. Important limitations

#

So, if you want to “make Sora AI videos again” in the official way, you need to:

  • Have an OpenAI API project with access to the Videos API, and
  • Call POST /v1/videos with model: "sora-2" or "sora-2-pro" as shown above,
  • Before the September 24, 2026 shutdown date.

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