Simple Python scripts to create video clips using the Reka AI API.
- Install requests:
pip install requests - Set your API key:
export REKA_API_KEY=your_key_here
Creates a clip from a YouTube video.
python3 clip_generator.pyEnter the video URL when prompted. The script streams progress and shows the Job ID (save it if interrupted).
Sample Output:
Check the status of a clip job using its Job ID.
python3 check_status.pyEnter the Job ID when prompted. Checks every 30 seconds until complete. Press Ctrl+C to stop.

