#question
1 messages · Page 1 of 1 (latest)
Hi @unborn gyro. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
To download a video you generated in Sora—regardless of whether you used a cameo (e.g., by referencing @t2xx2)—you need to follow the standard download process. Here’s how you can do it:
If you’re using the Sora app or web interface:
- After your video is generated, you can find it in your library or drafts.
- There will be an option (often via a three-dots menu or a download button) to download the video as an MP4 file to your device. Note that if your video includes someone else’s cameo or a public figure, or if you’re not a Pro user, the download will include a watermark. Only ChatGPT Pro users can download watermark-free videos if the video contains only their own cameo and does not depict a public figure or use someone else’s cameo. Otherwise, all downloads will have a watermark Creating videos with Sora.
If you’re using the Sora API:
- Retrieve the video status to ensure it’s completed.
- Download the video content using the video ID.
Example in Python:
from openai import OpenAI
client = OpenAI()
video = client.videos.retrieve("video_123") # Replace with your actual video ID
if video.status == "completed":
content = client.videos.download_content(video.id)
with open("video.mp4", "wb") as f:
f.write(content.read())
Or using curl:
curl -L "<https://api.openai.com/v1/videos/YOUR_VIDEO_ID/content"> \
-H "Authorization: Bearer $OPENAI_API_KEY" \
--output video.mp4
Replace YOUR_VIDEO_ID with the actual ID of your video Retrieve video content.
Important notes:
- If your video uses a cameo (e.g., @t2xx2), the watermark policy applies as described above.
- Download URLs are valid for a maximum of 1 hour after generation, so save the file promptly Video generation with Sora.
If you need more details about cameo usage or watermark rules, let me know!
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
@unborn gyro Kapa.ai is still learning and improving, please let me know how I did by reacting below.