4 ms·
A couple of quick optimizations: - If weights are repeated, you only need to specify the last unique one - You can chain filters using a comma - You can drop
by MrPoush 3y ago
A couple of quick optimizations:
- If weights are repeated, you only need to specify the last unique one
- You can chain filters using a comma
- You can drop that last point in the curve
ffmpeg -i input.mp4 -vf tmix=frames=36:weights="1",curves=all='0/0 0.05/1' output.mp4
- dvt 3y ago> You can chain filters using a comma Haha, I knew there was some way of doing this, but I couldn't remember how (tried semicolons which didn't work), thanks :)