You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FFtools is a FFmpeg command spawner made in Rust that focuses on simplicity in different common tasks (such as trim, optimize, merge, etc.).
13
+
14
+
In addition, it has several improvements, like automatic stream copy detection (which allows a faster coding) or media optimization via TBN (which can reduce file size with not much loss of quality).
You can use flags to extend command functionalities. All commands and arguments are available in the [FFtools Wiki](https://github.com/gatomo-oficial/fftools/wiki).
50
+
51
+
## Wiki
52
+
If you want to see an extended documentation about commands, options and usage, please go to [FFtools Wiki](https://github.com/gatomo-oficial/fftools/wiki).
53
+
54
+
## Installation
55
+
### Dependencies
56
+
-[`ffmpeg`](https://ffmpeg.org/)
57
+
58
+
### Standalone (Using Cargo)
59
+
```sh
60
+
cargo install fftools
61
+
```
62
+
63
+
### Linux
64
+
#### Arch Linux
65
+
FFtools is available via AUR.
66
+
```sh
67
+
yay -S fftools-bin
68
+
# or
69
+
paru -S fftools-bin
70
+
```
71
+
72
+
#### Debian/Ubuntu
73
+
For Debian, Ubuntu and Debian-based distros, download the `.deb` in [`Releases`](https://github.com/gatomo-oficial/fftools/releases/). Then install it with DPKG.
74
+
```sh
75
+
sudo dpkg -i fftools_1.0.0_amd64.deb
76
+
```
77
+
78
+
### Windows
79
+
FFtools is also available on Windows.
80
+
81
+
#### Manual
82
+
1. Install `FFmpeg`.
83
+
2. Download the .exe in [`Releases`](https://github.com/gatomo-oficial/fftools/releases/).
84
+
3. Add it to PATH. If you don't know how to do it, [read this post](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/).
85
+
86
+
> **Note:** There will be Scoop support soon...
87
+
88
+
### Manual
89
+
If you want to edit code or install it manually you can run these commands.
0 commit comments