Skip to content

Commit 7d9cb53

Browse files
committed
block out docs
1 parent 388be50 commit 7d9cb53

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
Sora does not respond to all information provided in the prompt, but is still capable of creating realistic clips
4+
5+
Users must use Sora in English or Latin script languages for best user experience
6+
7+
Sora does not generate scenes with acts of violence but can demonstrate realistic war-like footage
8+
9+
Commonly filtered names such as Emma Watson, Obama, Biden, etc. are not filtered.
10+
11+
Sora does respond to prompts that can produce videos of lingerie – for example, using Japanese allowed a previously filtered prompt (in English) to be run
12+
13+
14+
RAI: Sora has a robust safety stack including a moderation stack with prompt rewrites, content filtering, abuse monitoring, sensitive content blocking, and safety classifiers. Provenance will be added during private preview.
15+
16+
Sora API will support the following resolution dimensions: 480x480, 480x854, 720x720, 720x1280, 1080x1080, 1920x1080
17+
18+
5,10,15,20 seconds of video duration. For 1080p, max duration is 10s
19+
20+
## Limitations
21+
22+
23+
Max variants on 1080p =1; 720 =2;
24+
Limiting 2 pending tasks per customer

articles/ai-services/openai/toc.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ items:
3838
href: gpt-v-quickstart.md
3939
- name: Image generation
4040
href: dall-e-quickstart.md
41+
- name: Image generation
42+
href: video-generation-quickstart.md
4143
- name: Use your data
4244
href: use-your-data-quickstart.md
4345
- name: Realtime API for speech and audio (preview)
@@ -136,8 +138,8 @@ items:
136138
displayName: cua, computer using model
137139
- name: Vision-enabled chats
138140
href: ./how-to/gpt-with-vision.md
139-
- name: Image generation
140-
href: ./how-to/dall-e.md
141+
- name: Video generation
142+
href: ./how-to/video-generation.md
141143
- name: Function calling
142144
href: ./how-to/function-calling.md
143145
- name: Completions (legacy)
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: 'Quickstart: Generate video with Azure OpenAI'
3+
titleSuffix: Azure OpenAI
4+
description: Learn how to get started generating video clips with Azure OpenAI.
5+
manager: nitinme
6+
ms.service: azure-ai-openai
7+
ms.topic: quickstart
8+
author: PatrickFarley
9+
ms.author: pafarley
10+
ms.date: 05/12/2025
11+
---
12+
13+
# Quickstart: Generate video with Azure OpenAI
14+
15+
tbd
16+
17+
## Prerequisites
18+
19+
- An Azure subscription. <a href="https://azure.microsoft.com/free/ai-services" target="_blank">Create one for free</a>.
20+
- <a href="https://www.python.org/" target="_blank">Python 3.8 or later version</a>.
21+
- An Azure OpenAI resource created in a supported region. See [Region availability](/azure/ai-services/openai/concepts/models#model-summary-table-and-region-availability).
22+
- Then, you need to deploy a `sora` model with your Azure resource. For more information, see [Create a resource and deploy a model with Azure OpenAI](../how-to/create-resource.md).
23+
24+
25+
## Setup
26+
27+
### Retrieve key and endpoint
28+
29+
To successfully call the Azure OpenAI APIs, you need the following information about your Azure OpenAI resource:
30+
31+
| Variable | Name | Value |
32+
|---|---|---|
33+
| **Endpoint** | `api_base` | The endpoint value is located under **Keys and Endpoint** for your resource in the Azure portal. You can also find the endpoint via the **Deployments** page in Azure AI Foundry portal. An example endpoint is: `https://docs-test-001.openai.azure.com/`. |
34+
| **Key** | `api_key` | The key value is also located under **Keys and Endpoint** for your resource in the Azure portal. Azure generates two keys for your resource. You can use either value. |
35+
36+
Go to your resource in the Azure portal. On the navigation pane, select **Keys and Endpoint** under **Resource Management**. Copy the **Endpoint** value and an access key value. You can use either the **KEY 1** or **KEY 2** value. Always having two keys allows you to securely rotate and regenerate keys without causing a service disruption.
37+
38+
:::image type="content" source="../media/quickstarts/endpoint.png" alt-text="Screenshot that shows the Keys and Endpoint page for an Azure OpenAI resource in the Azure portal." lightbox="../media/quickstarts/endpoint.png":::
39+
40+
[!INCLUDE [environment-variables](environment-variables.md)]
41+
42+
43+
POST: Create Video Generation Job
44+
`/deployments/{deployment-id}/video/generations/job`
45+
46+
47+
GET: Get Video Generation Job /deployments/{deployment-id}/video/generations/jobs/{job-id}
48+
49+
GET: Get Video Generation /deployments/{deployment id}/video/generations/jobs/{generation-id}

0 commit comments

Comments
 (0)