There is a CLI tool that lets you do common video and audio operations without having to remember complex ffmpeg syntax. There is no AI and no API calls, just old school pattern matching. Itβs fast, works offline, and feels like video editing in plain English right from your CLI. For example, you can simply type:
```
ff convert my-file.mp4 to gif
```
And it will generate the ffmege command for you:
```
ffmpeg -i my-file.mp4 -vf fps=15,scale=480:-1:flags=lanczos -loop 0 -y video_output.gif
```
```
ff convert my-file.mp4 to gif
```
And it will generate the ffmege command for you:
```
ffmpeg -i my-file.mp4 -vf fps=15,scale=480:-1:flags=lanczos -loop 0 -y video_output.gif
```
reshared this
nixCraft π§
in reply to nixCraft π§ • • •reshared this
Pitermach and Jonathan reshared this.
Andre Louis
in reply to nixCraft π§ • • •@Scott I made a bat file based on similar information a month or so ago that takes image as the first input, file as the second, and turns that video into <second file.mp4> as the output.
The contents of said batch file goes like this:
@ffmpeg -threads 3 -hwaccel auto -r 1 -loop 1 -i %1 -i %2 -c:v libx264 -preset ultrafast -x264opts opencl -vf scale=1280:720 -c:v libx264 -tune stillimage -c:a copy -shortest "%~dpn2.mp4"
Scott
in reply to Andre Louis • • •Martin
in reply to Andre Louis • • •