Skip to main content
Menu
No articles found matching your search.
Language

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
Convert Video Files to MP3
Tech

Convert Video Files to MP3

A quick word on how to convert a video to MP3. Here’s how I did it. bash 1 ffmpeg -i file_to_convert.flv -f mp3 -ab 192000 -vn new_file.mp3 Obviously, you need to have ffmpeg installed on your system. The options I passed on that line are: -i: input file -f: output format -ab: MP3 bitrate (192 kbps in this case) -vn: do not capture video Simple and fast. Try it out and see for yourself ;) And naturally, if you use this command or manage to improve it somehow, let me know.

Read more