Convert YouTube FLV files in Linux

If you downloaded a Flash FLV file and want to convert it to an audio or video file, do the following: For audio: ffmpeg -i input.flv -ar 44100 -ab 160 -ac 2 output.mp3 For video: ffmpeg -i input.flv -s 352×288 -b 512 -ab 128 output.mpg 

Easily read man pages in Firefox

Want your man pages read with proper formatting? Install man2html then open Firefox and do the following: Go to Bookmarks > Organize Bookmarks;Open a bookmark folder then right-click and chose New Bookmark;Name the new bookmark Man;In the Location field paste this line: http://localhost/cgi-bin/man/man2html?query=%s In the Keyword field type man;Click Add. Now all you have to… Read More »