Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codergautam/ai-video-generator
An AI video generator which can generate videos with Images and Audio based on a single prompt.
https://github.com/codergautam/ai-video-generator
Last synced: 3 months ago
JSON representation
An AI video generator which can generate videos with Images and Audio based on a single prompt.
- Host: GitHub
- URL: https://github.com/codergautam/ai-video-generator
- Owner: codergautam
- Created: 2023-01-16T00:11:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T11:43:13.000Z (over 1 year ago)
- Last Synced: 2024-06-20T08:32:16.183Z (5 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-star - ai-video-generator
README
# auto-cli
A command line interface (CLI) to create short AI generated story videos.
# Usage
To create a short AI generated story video, first configure .env in the project directory that contains OPENAI_API_KEY. It uses Amazon Polly by default, but has code for Microsoft Azure Text-to-Speech as well (see src/text-to-speech.js). For Amazon Polly, you need to have the AWS cli installed and configured.
You can also use your own TTS service by modifying the code.
Then run the following command in the project directory:
```
node src/index.js -p "" -o ""
```# Options
-p: The prompt for the AI to use as inspiration for the story.
-o: The name and location for the output video file.# Examples
Create a short AI generated story video using the prompt "A day in the life of a superhero":
```
node src/index.js -p "A day in the life of a superhero" -o "superhero.mp4"
```Create a short AI generated story video using the prompt "A romantic dinner for two on a beach":
```
auto-cli -p "A romantic dinner for two on a beach" -o "beach-dinner.mp4"
```