-
-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
pro-grammer-SD edited this page Jun 23, 2025
·
7 revisions
| Flag | Alias | Description |
|---|---|---|
-make <TOPIC> |
— | Generate a short video from the given topic text. |
-d |
— | Delete the existing media/ folder before generating new content. |
-ow |
— | Overwrite the final video output if it already exists. |
-fr |
— | Force render the final video using existing audio/image without regenerating them. |
-c |
— | Cleanup both media/ and output/ directories and exit immediately. |
-h |
— | Show help and available commands. |
# Generate a new video for the topic "Importance of Water"
python main.py -make "Importance of Water"
# Force rendering from existing media, skip regeneration
python main.py -make "Importance of Water" -fr
# Delete old media before generating new
python main.py -make "AI vs Humans" -d
# Overwrite the final video even if it exists
python main.py -make "Benefits of Yoga" -ow
# Clean all media and output, then exit
python main.py -c📝 Tip: Combine
-owand-dif you want a completely fresh build every time.