Skip to main content

Tag

Convert

gify.sh – back to bash scripting
Tech

gify.sh – back to bash scripting

gif image created using gify.sh Today I’ll present you a useful script that will help you create amazing gifs from your still photos using a couple tools from the IMAGEMAGIK suite, so without further ado, here it is, straight from github’s gists. Download as ZIP archive what the code does is quite simple, it takes a few arguments and helps you resize your images while keeping the original proportions. Put the code in your path and let’s put it to work.

Read more

convertire file video in mp3

un piccolo appunto su come convertire velocemente un video in mp3.. ffmpeg -i file_da_convertire.flv -f mp3 -ab 192000 -vn nuovo_file.mp3 ovviamente bisogna avere ffmpeg installato nel sistema, le opzioni che abbiamo passato sulla riga sono: -i: file di input -f: formato di output -ab: bitrate del file mp3 -vn: non catturare il video Semplice e veloce, provare per credere.. ;) e ovviamente se usate questo comando o lo migliorate in qualche modo fatemelo sapere nei commenti..

Read more