Skip to content

Commit 67b9718

Browse files
committed
wording
1 parent 8c20e42 commit 67b9718

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-foundry/openai/includes/video-generation-rest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ You can generate a video with the Sora model by creating a video generation job,
251251
252252
Replace the `"file_name"` field in `"inpaint_items"` with the name of your input video file. Also replace the construction of the `files` array, which associates the path to the actual file with the filename that the API uses.
253253
254-
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 video frame should be used in video generation.
254+
Use the `"crop_bounds"` data (image crop distances, from each direction, as a fraction of the total frame dimensions) to specify which part of the video frame should be used in video generation.
255255
256256
You can optionally set the `"frame_index"` to the frame in the generated video where your input video should start (the default is 0, the beginning).
257257
@@ -284,7 +284,7 @@ You can generate a video with the Sora model by creating a video generation job,
284284
])
285285
}
286286
287-
# Replace with your own image file path
287+
# Replace with your own video file path
288288
with open("dog_swimming.mp4", "rb") as video_file:
289289
files = [
290290
("files", ("dog_swimming.mp4", video_file, "video/mp4"))

0 commit comments

Comments
 (0)