General
Google Voice.
by Ken on Jan.11, 2010, under General, Tech
I got an invite to Google Voice and so far I have to say it’s WAY COOL! You can get a local number to link all your phones to and the part I like the best is voice mails are transcribed and sent as a text message to your cell phone with the phone number that called, attached. I have just begun to explore the features of this service and so far I’m really liking it. Request an invite and check it out at: https://www.google.com/voice
![]()
How To Convert Any Video File Format Under Linux
by Ken on May.20, 2009, under General
This video tutorial will explain how to losslessly convert any video file format, including quicktime .mov, flash .flv files, open source .ogv, .mp4, .wmv, .asf and more. I show you how to install ffmpeg, check the formats and codecs available to you, convert a file to a new format (windows media and .asf in this example) without any loss in quality during the decoding and encoding process, and create and run a script file that will enable you to run a batch conversion on any number of files at the same time.
Anyone who has tried to convert multimedia files in Windows knows how challenging it can be. There are a ton of different programs out there to do it, but most of them either leave a watermark in your video, lower the resolution of your video, or both, unless you pay hundreds of dollars. ffmpeg can do this for you quickly, conveniently, and completely free – and can even be used in Windows! This video was created for Ubuntu, but will work for most Linux distributions, and the code you learn here to convert a file can be applied to the Windows version as well, though Windows’ scripting language is different so you will need to adjust the batch conversion script.
Single File Conversion:
sudo apt-get install ffmpeg
ffmpeg -formats (lists all available formats based on the currently installed codecs, to be used with -vcodec, -acodec, and -f)
ffmpeg -i inputfilename.ext -vcodec wmv2 -sameq -acodec wmav2 -f asf outfile.asf
ffmpeg - start ffmpeg
(-i inputfilename.ext - tells ffmpeg the file name and extension from which to convert)
(-vcodec wmv2 - use video codec wmv2)
(-sameq - use same video quality as source file)
(-acodec wmav2 - use audio codec wmav2)
(-f asf - choose output format, sometimes known as a container, in this case asf)
Bonus Batch Conversion:
sudo touch convert.sh (here we use touch to create a blank file, not always necessary to do that rather than through a text editor but it is safer with permissions and such)
gksu gedit convert.sh (this is only available for gnome desktops, i.e. ubuntu and the like, so you can tell people to use whatever text editor they like)
sudo chmod 0777 convert.sh (like last time, chmod changes file or directory permissions, in this case giving access to everyone to read, write, execute the script)
./convert.sh (runs the script convert.sh on files in the /Videos directory)
ls (ls -l lists all files and directories plus permissions)
Script:
for f in *.MOV; do ffmpeg -i “$f†-vcodec wmv2 -sameq -acodec wmav2 “${f%.MOV}.asfâ€; done
Mac vs. PC – The REAL Truth [PIC]
by Ken on Aug.19, 2008, under General, Humor, Linux, Tech
Leave a Comment more...A Third of New PCs Being Downgraded to Windows XP
by Ken on Aug.19, 2008, under General, Tech
Vista may be what Microsoft sells, but XP remains popular. August 18, 2008 (Computerworld) More than one in every three new PCs is downgraded from Windows Vista to the older Windows XP, either at the factory or by the buyer, a performance and metrics researcher said today.

