wait

wait... just one second...

This is a collection of handy tools, helpers and (more or less) usefull stuff.
Made with matcha.css for styling !

ffmpeg

Audio

  • MP3 to MP4 : ffmpeg -loop 1 -i <input_image> -i <input_audio>.mp3 -c:v libx264 -tune stillimage -c:a aac -b:a 192k -vf "scale='iw-mod(iw,2)':'ih-mod(ih,2)',format=yuv420p" -shortest -movflags +faststart <output_filename>.mp4
  • MP3 to OGG : ffmpeg -y -i <filename>.mp3 -c:a libopus -b:a 64k -ac 2 <filename>.ogg

Video

  • MOV to MP4 : ffmpeg -i <filename>.mov -vcodec h264 -acodec mp2 <filename>.mp4
  • MOV to GIF : ffmpeg -i <filename>.mov -f gif -filter_complex "fps=30" <filename>.gif
  • MP4 to GIF : ffmpeg -i <filename>.mp4 -f gif -filter_complex "fps=30" <filename>.gif
  • MP4 to WEBM : ffmpeg -i <filename>.mp4 -c:v libvpx-vp9 -crf 30 -b:v 0 -b:a 128k -c:a libopus <filename>.webm