Sony releasing a Linux based handheld

Linux powers Sony’s new Mylo WiFi handheld
Would love to see a comparison between Nokia’s 770 and this..

From the article:
“In September, Sony expects to ship a Linux- and Qtopia-based handheld device featuring WiFi connectivity, an Opera web browser, and a variety of text- and voice-messaging clients and media players. The Mylo — short for “My Life Online” — will be available in black or white, priced at $350.

YouTube APIs.. Is this new?

YouTube – Broadcast Yourself.

Hmmn.. This could be very interesting..!

“YouTube is excited to offer APIs to the developer community. Using our APIs, you can easily integrate online videos from YouTube’s rapidly growing repository of videos into your application. The APIs currently allow read-only access to key parts of the YouTube video respository and user community.”

Thanks Steven.

Verizon DSL constantly changing IP address

So, I haven’t called support and I know that is the first thing I should do when problems like this arise but it just seems too fishy.

To make a long story short, I recently decided to switch from regular home phone service from Verizon (who also supply my DSL) to VoIP service. I have had VoIP and regular phone service for quite some time and things were well. Recently though, we had a pretty nasty electrical storm and one of the things that got zapped was my Asterisk box which handled the integration between normal phone service and VoIP.

After a bit of research, I found the Verizon does in fact offer naked loop DSL (DSL without a phone number) for existing customers and that I could continue with my DSL and transfer my phone number over to my VoIP provider and basically save myself $50 a month.

Now here is the troubling bit. After filling out the paper work and sending it to my VoIP provider who subsequently contacted Verizon to get the process started my DSL has been tremendously flaky. So flaky that my IP address is repeatedly changing. Not once a day, not 10 times a day, somewhere in the vicinity of 100 times a day! I probably don’t need to mention how bad this is for services like VoIP. Essentially making it useless and unusable.

I could chalk it up to damage from the electrical storm (but I didn’t notice it until after sending in the paperwork) or:

Could this really be a Verizon tactic to prevent people from going with 3rd party VoIP?

Dear telephone, meet the internet

Pheeder

“Pheeder is a whole new way of using your cellphone: it lets you communicate with all of your friends simultaneously, with a single phone call. To use it, you just call Pheeder, leave a message and hang up. Seconds later all of your friends, or anyone you want, receives the message at the very same instant. And if they want, they can send a reply to your message.”

Flash, FFMPEG and now Thumbnails!

A couple of days ago I got FFMPEG working to automatically generate FLV video files for OpenVlog. Today I finally got thumbnails generating correctly. Here are the commands:

This creates a JPEG:
ffmpeg -i inputfile -t 0.001 -ss 1 -vframes 1 -f mjpeg -s 320×240 outputfile.jpg

This creates a QT Movie that I am using as a reference movie (just one frame of video):
ffmpeg -i inputfile -t 0.001 -ss 1 -vframes 1 -vcodec mpeg4 -an outputfile.mov

I got this working with lots of help from the following pages:
Converting Video Formats with FFmpeg
Extracting JPG Frames Using FFmpeg and mjpeg Parameter