-
Notifications
You must be signed in to change notification settings - Fork 376
Fix typo in video generation documentation. #593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
The input_reference parameter only supports images and not videos. Using video as an input_reference throws openai.BadRequestError: Error code: 400 - {'error': {'message': 'Video inpaint is not available for your organization.', 'type': 'invalid_request_error', 'param': None, 'code': None}}
While OpenAI documentation clearly mentions Images https://platform.openai.com/docs/guides/video-generation#use-image-references the Azure OpenAI Documentation mentions that images/ videos can be used.
|
@Nikhileswar94 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
|
Learn Build status updates of commit 4553455: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Can you review the proposed changes? Due to the upcoming conference, all merging and publishing is on hold until the morning of 18 November 2025. Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR corrects the documentation for the input_reference parameter in the video generation feature to accurately reflect that it only supports images, not videos. According to the PR description and OpenAI's official documentation, using videos as input_reference results in a 400 error.
Key Changes
- Updated the description of
input_referenceparameter to specify it only accepts images, removing the incorrect mention of videos
Comments suppressed due to low confidence (3)
articles/ai-foundry/openai/concepts/video-generation.md:490
- The prompt comment still references 'image/video' but should be updated to only mention 'image' since
input_referenceno longer supports videos according to the corrected documentation.
prompt="Describe your desired output within the context of the reference image/video",
articles/ai-foundry/openai/concepts/video-generation.md:525
- The prompt comment still references 'image/video' but should be updated to only mention 'image' since
input_referenceno longer supports videos according to the corrected documentation.
prompt="Describe your desired output within the context of the reference image/video",
articles/ai-foundry/openai/concepts/video-generation.md:550
- The prompt comment still references 'image/video' but should be updated to only mention 'image' since
input_referenceno longer supports videos according to the corrected documentation.
prompt="Describe your desired output within the context of the reference image/video",
| ### Video generation from reference source | ||
|
|
||
| The `input_refernce` parameter allows you to transform existing images and videos using Sora 2. The resolution of the source image/video and final video must match. Supported values are `720x1280`, `1280x720`, `1024x1792`, and `1792x1024`. | ||
| The `input_refernce` parameter allows you to transform existing images using Sora 2. The resolution of the source image and final video must match. Supported values are `720x1280`, `1280x720`, `1024x1792`, and `1792x1024`. |
Copilot
AI
Nov 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling of 'input_refernce' to 'input_reference'.
| The `input_refernce` parameter allows you to transform existing images using Sora 2. The resolution of the source image and final video must match. Supported values are `720x1280`, `1280x720`, `1024x1792`, and `1792x1024`. | |
| The `input_reference` parameter allows you to transform existing images using Sora 2. The resolution of the source image and final video must match. Supported values are `720x1280`, `1280x720`, `1024x1792`, and `1792x1024`. |
The input_reference parameter only supports images and not videos. Using video as an input_reference throws openai.BadRequestError: Error code: 400 - {'error': {'message': 'Video inpaint is not available for your organization.', 'type': 'invalid_request_error', 'param': None, 'code': None}}
While OpenAI documentation clearly mentions Images https://platform.openai.com/docs/guides/video-generation#use-image-references the Azure OpenAI Documentation mentions that images/ videos can be used.