ffmpeg -i input.mpf -vf "transpose=1" output.mp4
For the transpose parameter you can pass:
To get volume level of the media file in command line I use:
LINUX
ffmpeg -i audo.mp3 -af "volumedetect" -f null /dev/null
WINDOWS
ffmpeg -i audo.mp3 -af "volumedetect" -f null NUL
To normalize
ffmpeg -i input.mp3 -af "volume=5dB" output.mp3
Normalize inside a video file
ffmpeg -i video.avi -af "volume=5dB" -c:v copy -c:a libmp3lame -q:a 2 output.avi
All descriptions and technical specifications are subject to change without any prior notice. © copyright 2014