"in the future entertainment will be randomly generated". Automate vertical video creation with zero AI
Create professional short vertical videos by combining videos, adding narration (TTS), dynamic subtitles, and audio mixing. Perfect for content creators who want to streamline their workflow. (Or if you want to make the Dead Internet Theory real)
Check out an example video created using Short Maker:
Watch the video on Twitter
Created using two video files and a text file
python short-maker.py video1.mp4 video2.mp4 -t script.txt -a --duck-volume 5 -vv 100
- 📼 Create vertical (9:16) video compositions
- 🔊 Text-to-Speech narration with sync subtitles
- 🎵 Background music mixing with volume control
- 🦆 Audio ducking during narration
- 🖼️ Smart video cropping/resizing
- 🐍 Pure Python, FFmpeg and ImageMagick - no AI/ML dependencies
- Python 3.8+
- Git (to clone the repository)
- FFmpeg
- ImageMagick
- Download Python:
- Go to the official Python website.
- Download the latest version of Python 3 for your operating system.
- Install Python:
- Run the installer and ensure that you check the box "Add Python to PATH" before proceeding with the installation.
- Follow the on-screen instructions to complete the installation.
- Download Git:
- Visit the official Git website and download the appropriate version for your operating system.
- Install Git:
- Run the installer and follow the default instructions.
You have two options to obtain the source code:
- Clone using Git:
Open your terminal or command prompt and run:
git clone https://github.com/Hukasx0/short-maker.git
- Download as ZIP:
- Click the "Code" button on the repository page.
- Select "Download ZIP" and then extract the contents to your desired location.
- Windows:
# 1. Install dependencies
choco install ffmpeg imagemagick
# 2. Add to PATH (search for Environment Variables)
# Add paths to ffmpeg.exe and magick.exe
# 3. Edit moviepy config
# Locate config.py in PythonXX\Lib\site-packages\moviepy
# Change IMAGEMAGICK_BINARY to "magick.exe"
- Linux:
sudo apt-get install ffmpeg imagemagick
- macOS:
brew install ffmpeg imagemagick
- All Systems:
(Before installing Python packages, make sure you change to the project directory whererequirements.txt
is located.)
cd short-maker
pip install -r requirements.txt
- Install required tools from above
- Prepare your video file/files
- (Optional) For narration: create text file with script
- (Optional) Find background music
# Two videos with background music
python short-maker.py top.mp4 bottom.mp4 -m music.mp3 -o output.mp4
# Single video with narration
python short-maker.py input.mp4 -t script.txt -o narrated.mp4
python short-maker.py top.mp4 bottom.mp4 \
-m music.mp3 -t script.txt \
-o final.mp4 -r 1080x1920 \
-mv 20 -vv 100 --duck-volume 40 \
-a \
--animate-text \
--fade-duration 0.15 \
--text-color "#00FF00" \
--text-border-color black \
--no-bg-box \
--use-video-length
Flag | Description | Default |
---|---|---|
Video Composition | ||
top_video |
Path to main video file | Required |
bottom_video |
Secondary video (optional) | None |
-m , --music |
Background music file | None |
-o , --output |
Output filename | output.mp4 |
-r , --resolution |
Target resolution | 1080x1920 |
-mv , --music-volume |
Music volume (0-100) | 100 |
-a , --audio |
Keep original video audio | False |
-vv , --video-volume |
Original video volume (requires -a to work) |
0 |
Narration | ||
-t , --text |
Narration script file | None |
-l , --lang |
TTS language code | en |
-ns , --no-subtitles |
Disable subtitles | Enabled |
--duck-volume |
Lower background audio during TTS speech | Off |
--use-video-length |
Match video duration | False |
-s , --speed |
Narration speed multiplier | 1.0 |
--animate-text |
Enable subtitle fade-in animation | False |
--fade-duration |
Text fade-in, and fade-out animation duration (seconds) | 0.15 |
--text-color |
Subtitle text color (name/hex) | white |
--no-bg-box |
Disable semi-transparent background box | Enabled |
--text-border-color |
Text border/shadow color | black |
This script intentionally uses simple TTS (gTTS) instead of AI voice generation:
- No API keys required
- Faster processing
- Smaller footprint
Author: Hubert Kasperek