2020-02-19 20:03:51 +01:00
|
|
|
#Normalize audio
|
|
|
|
ffmpeg-normalize *.<format> -v -pr -c:a <audio codec> -ext <extension>
|
|
|
|
Examples:
|
|
|
|
ffmpeg-normalize *.opus -v -pr -c:a libvorbis -ext ogg
|
2020-02-21 21:28:14 +01:00
|
|
|
ffmpeg-normalize *.mp3 -v -pr -c:a flac -ext flac
|
|
|
|
|
|
|
|
#extract images from video
|
2020-02-24 09:46:03 +01:00
|
|
|
ffmpeg -i file.mpg -r 1/1 $filename%03d.jpg
|
|
|
|
|
|
|
|
#found in .bashrc
|
|
|
|
yta-best="youtube-dl --extract-audio --audio-format best "
|