mirror of
https://github.com/d-k-patel/ai-ffmpeg-cli.git
synced 2025-10-09 13:42:56 +03:00
664 B
664 B
Usage
aiclip "convert input.mov to mp4 with h264 and aac"
aiclip "trim first 30 seconds from video.mp4"
aiclip --dry-run "compress large-video.mp4"
Options:
--yes: skip confirmation--dry-run: preview only--model gpt-4o-mini: pick model
Subcommand mode
Global options must come before the subcommand. The primary subcommand is nl (natural language):
# Run with confirmation skipped
aiclip --yes nl "thumbnail at 10s from test.mp4"
# Preview only and override model
aiclip --dry-run --model gpt-4o-mini nl "compress input.mp4"
Avoid invoking the binary twice:
# Incorrect
aiclip aiclip --yes nl "..."