* Conversion to projo
* FFMPEG flags
* Slow down audio
+* Volume up and down
## Cut a movie part
It is possible to slow down the audio of a video while style keeping the same pitch, with a complex filter.
You need to use a correlated number for the speed and the pitch:
+
* speed (tempo) = X
* pitch = 1 / X
For instance, to slow down to 75% of the original speed, you would use:
+
* 0.75 for the tempo
* 1.33 for the pitch
OUTPUT.EXT
```
+# Volume up and down
+
+You can increase or decrease the volume with a filter (here, 150%):
+
+* -filter:a "volume=1.5"
+