Get started with Sora Studio in 3 easy steps!
Edit the .env file and add your OpenAI API key:
# Open the .env file
nano .env
# Add your API key (replace with your actual key)
OPENAI_API_KEY=sk-your-actual-api-key-hereSave the file (Ctrl+O, Enter, Ctrl+X in nano).
Run the startup script:
./start-server.shYou should see:
🎬 Starting Sora Studio...
✅ Found API key in .env file
🚀 Starting web server on http://localhost:8000
Press Ctrl+C to stop the server
Open your browser and go to:
http://localhost:8000
You're ready to start generating AI videos!
-
Enter a descriptive prompt like:
A golden retriever puppy playing in a field of flowers at sunset -
Choose your settings:
- Duration: 4, 6, or 8 seconds
- Resolution: Portrait, Landscape, etc.
-
Click "Generate Video"
-
Switch to the Dashboard tab to watch progress
-
Download when complete!
# Make sure the script is executable
chmod +x start-server.sh
# Try running directly
python3 -m http.server 8000- Make sure your key starts with
sk- - Check there are no extra spaces
- Verify the key is valid at https://platform.openai.com/api-keys
- Hard refresh: Ctrl+Shift+R (Windows/Linux) or Cmd+Shift+R (Mac)
- Check browser console for errors (F12)
- Make sure you're accessing
http://localhost:8000notfile://
Need more help? See the full README.md for detailed documentation.