You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/concepts/video-generation.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,13 @@ Sora is an AI model from OpenAI that can create realistic and imaginative video
15
15
16
16
## Supported features
17
17
18
-
Sora can generate complex scenes with multiple characters, diverse motions, and detailed backgrounds. The model interprets prompts with contextual and physical world understanding, enabling accurate scene composition and character persistence across multiple shots. Sora demonstrates strong language comprehension for prompt interpretation and emotional character generation.
18
+
Sora can generate complex scenes with multiple characters, diverse motions, and detailed backgrounds.
19
+
20
+
**Text to video**: The model interprets prompts with contextual and physical world understanding, enabling accurate scene composition and character persistence across multiple shots. Sora demonstrates strong language comprehension for prompt interpretation and emotional character generation.
21
+
22
+
**Image to video**: Sora can generate video content from a still image. You can specify where in the generated video the image appears (it doesn't need to be the first frame) and which region of the image to use.
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/includes/azure-openai-models-list.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,4 +23,5 @@ Azure OpenAI is powered by a diverse set of models with different capabilities a
23
23
|[GPT-3.5](../concepts/models.md#gpt-35)| A set of models that improve on GPT-3 and can understand and generate natural language and code. |
24
24
|[Embeddings](../concepts/models.md#embeddings)| A set of models that can convert text into numerical vector form to facilitate text similarity. |
25
25
|[Image generation](../concepts/models.md#image-generation-models)| A series of models that can generate original images from natural language. |
26
+
|[`Video generation`](../concepts/models.md#video-generation-models)| A model that can generate original video scenes from text instructions. |
26
27
|[Audio](../concepts/models.md#audio-models)| A series of models for speech to text, translation, and text to speech. GPT-4o audio models support either low latency *speech in, speech out* conversational interactions or audio generation. |
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/includes/video-generation-intro.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,6 @@ ms.topic: include
7
7
ms.date: 5/29/2025
8
8
---
9
9
10
-
In this quickstart, you generate video clips using the Azure OpenAI service. The example uses the Sora model, which is a video generation model that creates realistic and imaginative video scenes from text instructions. This guide shows you how to create a video generation job, poll for its status, and retrieve the generated video.
10
+
In this quickstart, you generate video clips using the Azure OpenAI service. The example uses the Sora model, which is a video generation model that creates realistic and imaginative video scenes from text instructions and/or image inputs. This guide shows you how to create a video generation job, poll for its status, and retrieve the generated video.
11
11
12
12
For more information on video generation, see [Video generation concepts](../concepts/video-generation.md).
You can generate a video with the Sora model by creating a video generation job, polling for its status, and retrieving the generated video. The following code shows how to do this via the REST API using Python.
77
77
78
-
## [Microsoft Entra ID](#tab/keyless)
78
+
1. Create the `sora-quickstart.py` file and add the following code to authenticate your resource:
79
79
80
-
1. Create the `sora-quickstart.py` file with the following code:
80
+
## [Microsoft Entra ID](#tab/keyless)
81
81
82
82
```python
83
83
import requests
@@ -91,10 +91,33 @@ You can generate a video with the Sora model by creating a video generation job,
Replace the `"file_name"` field in`"inpaint_items"` with the name of your input image file. Also replace the construction of the `files` array, which associates the path to the actual file with the filename that the API uses.
146
167
147
-
## [API key](#tab/api-key)
168
+
Use the `"crop_bounds"` data (image crop distances, from each direction, as a fraction of the total image dimensions) to specify which part of the image should be used in video generation.
169
+
170
+
You can optionally set the `"frame_index"` to the frame in the generated video where your image should appear (the default is 0, the start of the video).
148
171
149
-
1. Create the `sora-quickstart.py` file with the following code:
150
172
151
173
```python
152
-
import requests
153
-
import base64
154
-
import os
174
+
# 1. Create a video generation job with image inpainting (multipart upload)
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/whats-new.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,14 @@ This article provides a summary of the latest releases and major documentation u
20
20
21
21
## August 2025
22
22
23
+
### Sora image-to-video support
24
+
25
+
The Sora model from OpenAI now supports image-to-video generation. You can provide an image as input to the model to generate a video that incorporates the content of the image. You can also specify the frame of the video in which the image should appear: it doesn't need to be the beginning.
26
+
27
+
28
+
Sora is now available in the Sweden Central region as well as East US 2.
29
+
30
+
23
31
### Realtime API audio model GA
24
32
25
33
OpenAI's GPT RealTime and Audio models are now generally available on Azure AI Foundry Direct Models.
0 commit comments