dotfiles/fish/functions/ffmpeg.fish
Irrlicht a61c6756fc [fish] Useful Fish functions
- audio_to_ogg: go recursively through directories and convert all wma
  and m4a file to Ogg Vorbis
- ffmpeg and ffprobe alias to remove the banner (-hide_banner)
2025-06-10 18:23:32 +02:00

7 lines
198 B
Fish

function ffmpeg --wraps -d "alias ffmpeg -hide_banner"
command ffmpeg -hide_banner $argv
end
function ffprobe --wraps -d "alias ffprobe -hide_banner"
command ffprobe -hide_banner $argv
end