Archive for the ‘Computers’ Category

Create Video Thumbnails for Free

Sunday, July 22nd, 2007
Posted in Software · Tags:

Figured I’d share my results in what I’ve found by researching how to get video thumbnails. I tried MovieSnapshot but the JPGs it created were zero bytes; thus they were useless. Some people have been able to use the command line with VideoLan to create thumbnails, and someone else was able to create video thumbnails with ASP and FFmpeg. However I really didn’t feel like messing with the command line. I found a program called ThumbCell Creator but the reviews weren’t very good for it, so I didn’t bother with it.

After some more searching I found a program called Livid Batch Export Utility and it apparently will do a lot of batch conversions for video, including images. However the thumbnail export is buggy in verison 1.2 and I had to figure out how to get around those bugs. So here are my findings:

Livid Batch Export Utility 1.2 Thumbnail Export Workaround

  1. Backup your original videos (the program will overwrite files without warning you)
  2. Pick your source folder (the videos to be converted)
  3. Pick your destination folder (where you want the thumbnails, must be different than the source folder)
  4. At the bottom select Open (this is where you select the export format)
  5. Pick BMP (Picture will not work, not sure why)
  6. Now you can go back up to Settings (here you can change the color depth and quality)
  7. Now click Start
  8. Go into the destination folder, you will notice the files have the same video file extension, so you will have to rename each file with a .bmp manually or do so with a app that will rename files in a batch. I like to use a free program called Rename Master. Rename Master will rename a batch of files in a folder very fast (handy app to have). You can use it to change the extensions of your files, but remember to rename the destination folder’s files (they may confuse you off since they have the same names as the videos)
  9. So now that you have all your files renamed, you might want to convert them to a web format like GIF, PNG or JPG.
  10. You can either use Photoshop to convert files by using an Action or use a free program like Faststone Photo Resizer

NOTE: The bitmaps created by Livid Batch Export Utility will be the same size as the original video and are of the first frame.

Its a pain to have to go through all these steps but it’s the only free and fast way I know how to do this. Otherwise you would have to do a screenshot for each one and crop just the video.

And something else I found out, doing a screenshot in Windows Media Player will result in it being black, however there is a way to fix that.

Operating Systems to Watch

Wednesday, July 18th, 2007
Posted in Computers · Tags:

Figured I’d clean out some more links from my bookmarks and share them.

  • SymphonyOS - Linux based OS that features an innovative GUI
  • Syllable - A free operating system but it’s not based on Linux or BSD
  • ReactOS - Free open source operating system providing a ground-up implementation of a Microsoft Windows XP compatible operating system
  • SkyOS - Operating system built initially as a hobby and now a commercial intent
  • VectorLinux - lightweight Linux OS
  • DSL - (Damn Small Linux) very lightweight Linux OS, its only 50MB
  • Puppy Linux - another very lightweight Linux OS, 28-70 MB
  • Xubuntu - Ubuntu distribution for older computers
  • Haiku - Open source clone of BeOS

I don’t really follow SkyOS anymore since they gave up the idea of remaining free a few years ago. I do periodically see what Symphony and ReactOS are up to, though. And VectorLinux, DSL and Puppy Linux are worth looking into if you have some really ancient computer hardware.

I added Xubuntu and I recommend you get the text installer (its on the alternate cd) so you can install it faster. It uses the Xfce Desktop environment, which is lighter on resources than GNOME or KDE. Xfce is not ugly either, its visual style is similar to GNOME.
I added Haiku.

No Black Backgrounds For Editors

Saturday, June 23rd, 2007
Posted in Software · Tags:

It seems this is becoming more and more the case. Granted most programs allow you to create your own theme, unless you have several hours to do so, its a pain to set them up. That’s one of the reasons I’ve always like Crimson Editor, it comes with 3 themes, white, gray and black. Dreamweaver and Aptana both give you the standard white background editor. While its clean, staring at a blinding white background while coding usually makes your eyes tired. Ever since Windows, white backgrounds have been more the norm, rather than the old black or dodger blue of the DOS days. I’ve looked into trying to style Dreamweavers and unless I put aside like 10-20 hours (includes testing) I dont think I could make a good theme, unfortunately, no one has one available for download as well. Even Notepad++ gives you only the white background theme. Although someone has a made a ruby blue port. Although one of the major problems with Notepad++ is things are changing in each release and often times I have to manually edit a few things here and there. Of course you only have to modify the languages you use.

Here is a addition to the ruby blue port, which includes the styles for Python (keep in mind this is for Notepad++)

<LexerType name="python" desc="Python" ext="py">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="8DB0D3" bgColor="112435" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="NUMBER" styleID="2" fgColor="808080" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING" styleID="3" fgColor="7BD827" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CHARACTER" styleID="4" fgColor="808080" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORDS" styleID="5" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="TRIPLE" styleID="6" fgColor="F08047" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TRIPLEDOUBLE" styleID="7" fgColor="F08047" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CLASSNAME" styleID="8" fgColor="4A9BEA" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="DEFNAME" styleID="9" fgColor="4A9BEA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="10" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="8DB0D3" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRINGEOL" styleID="12" fgColor="730080" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
</LexerType>

Here’s how the fonts work in Notepad++
fontStyle 1=bold 2=italics 4=underline add the # for multiple options, so a 3 would be bold and italics. I’ve also noticed that if you use Courier New as your font the bold doesn’t show up so well.

I’ll share what changes I’ve done with my stylers.xml files for Notepad++

Things I Hate About Windows XP Tablet PC

Monday, June 18th, 2007
Posted in Windows · Tags:

For whatever reason, Microsoft didn’t build this option into Windows XP Tablet PC, but the Hold Tool for Tablet PC wont give you an alt click for certain form and window elements, such as scrollbars, buttons, check boxes, radio buttons and so on. Of course this tool doesn’t work in Firefox, perhaps to it using a seperate UI?

Hold Tool Powertoy

Also the Ink Desktop takes ages to load up, and usually ends up with the Eolas bug (where outlined hashmarks appear ont he edges of an item when you hover over it). I believe if you check the option to “allow active content to run in files on My Computer” in IE’s settings this will fix the problem. And speaking of Ink Desktop, why can’t we save them as a file and scroll through them as list or print them out later?

Ink Desktop Ink Desktop Options

Although Microsoft got ArtRage 1.3 rebranded as Ink Art for inclusion, I still would of like to have had a nice drawing program similar to what the Snipping Tool 2.0 has. Granted I can use Windows Journal, I’d like to have an easy one with no background. Which reminds me the Snipping Tool needs an option to scroll down the window, like a document or a web site. It also would be nice to bring up the Snipping Tool’s editor without having to do another capture. And the Power Paint Tool PowerToy is not a good replacement at all, often I can’t get the UI to respond to my pen, its like once the button has focus it will no longer respond to changes, so you have to pick another and go back.

Windows Journal Windows Journal Options Windows Journal Options Windows Journal Options Ink Art (Art Rage 1.3)

The Tablet PC Input Panel wont let you erase what you are writing (if its in handwriting mode) with the top of your stylus, instead it writes more text.

Tablet PC Input Panel

Firefox Extensions for Tablet PC Users

Sunday, June 17th, 2007
Posted in Software · Tags: ,

Here are some handy extensions to make your Tablet PC experience better on Firefox.

  • GeckoTIP - Makes the Tablet PC Input Panel work in Windows XP Tablet PC Edition, also has an option for a left-handed scrollbar
  • MenuX - Minimal Toolbar buttons designed with Tablet PCs and Laptops in mind
  • Grab and Drag - scroll without scrollbars, it works like the hand in Photoshop and Adobe Reader, but it has physics added, allowing the page to scrolll a little bit or a lot based on your pen “flick”, it also has momentum and it slows down instead of stopping abruptly.

The next bunch are Gestures, which will do tasks based on how you move your mouse on your screen. You might give each one a try to see which one you like the best.