|
At the crossroad of New media, Engineering, Research and Development
|
|
Archive for ‘N800’ Category
Mar
07
2009
VMWare demos mobile virtual machine for N800VMware demoed a Nokia N800 featuring its mobile hypervisor at its VMworld Europe conference, showing Windows CE and Google’s Android running at the same time.
This sounds like a great idea….Now all we need is more powerful processors….We’re all looking at you Intel….The “Hz” race is on again
The Nokia N810 is powered by maemo Linux based OS2008, updatable also on the Nokia N800, the previous internet tablet generation hardware. The Nokia N810 features a highly customizable user interface and contains various novelties such as a Mozilla based browser with Ajax and Adobe flash 9, Bluetooth headset support as well as enhanced video and audio features. The refreshed Video Gizmo, Skype and Rhapsody highlight some most popular downloads available while Boingo Wireless, Earthlink and The Cloud enable Wi-Fi connectivity, across thousands of different locations globally.
The Nokia N810 has an integrated GPS receiver which allows you to pinpoint your position and find a wide variety of points-of-interests using the pre-loaded maps. Upgrade to Wayfinder’s voice-guided navigation for turn-by-turn directions and explore the world on foot or in the car. So get ready and start saving up. Ipod (or if Rogers gets it’s act together) and Iphone first, N810 with all the sweet tech inside plus the ISDK in Feb…..Next year will be a busy Dev. year Jul
30
2007
iPhone keyboard done better on Nokia N800….Well they said it can’t be done. They said the secret of the apple sauce was only known to Steve. Looks like Gustavo Sverzut Barbieri has it figured out. 1340 lines of code and you’ve got the Apple’s Ubercool keyboard on the N800…..gotta love open platforms. Okay, so by now you all know that I kinda hate the iPhone. I think it’s gonna be the big wake up call for Apple/Steve. We’ll see, but in the meantime Nokia has beefed up the N800 with a simple software upgrade. New features include Skype (yehaaa), Flash 9 (wohoo) and SDHC support (upto 8GB), so run and grab it here. This means that you can grab two 8GB SDHC card and have a fully functional linux Computer w/ 16GB of Disk in your pocket. Get some skype-out minutes and you can leave your iPhone at home. All this and battery life improvement as well. My advice to Apple, stick to what you know, make better Computers/OS’s and let the phone makers make the phones May
29
2007
Getting HP IPAQ Bluetooth Folding Keyboard to work with Nokia N800Okay this was relatively simple…..
May
25
2007
Streaming Quicktime from Nokia N800 Internet TabletLet me start by saying that I found the recipe for this on Josh Lifton’s website. So most of the credit really goes to him. I’ve just simplified (and expanded) his method to cover generic quicktime streaming. So basically what we want to do is to connect the N800 to a network, setup a quicktime server (or darwin streaming server for people who don’t have access to OSX server) and get the N800 to create a H.263 stream (audio and video) and send it to our server. Sounds easy right? Here are the bits you need:
Recipe for N800 Assuming you have the N800 powered up and setup for Network usage (wireless), here are the steps I followed to get the N800 prepped: Put the application manager in “redpill” mode. Go to “Tools > Application catalogue”, click “New”, enter “matrix” into the “Web Address” field, click “Cancel”. Choosing the red pill will activate the red pill mode, obviously, and chosing the blue one will deactivate it. Install Dropbear SSH Server and Client software onto your N800. Now ssh from the Mac (or PC) to your N800 and login as root (password is rootme by default). Change the password and make a note of it. On the N800 (through ssh and vi) edit /etc/apt/source.list file and either add the differences or replace the content with the following:
At this point reboot your N800 by issuing the reboot command from ssh window. Okay you’ve made it this far, good that means you have not bricked your machine yet osso-xterm Recipe for Streaming Server (QTSS) The procedure described in this document was tested with the Apple QuickTime Streaming Server (QTSS) running on a Mac OS X 10.4.9 Server machine. Similar results are most likely possible with the open source Darwin Streaming Server (DSS). You have to find out where the streaming directory of the server is. By default on QTSS it is /Library/QuickTimeStreaming/Movies/ folder. We now need to create an SDP file that point our quicktime client at the stream. Think of the .sdp file as a stub file on the server that tells the client all the relevant information about the stream. I’ve succesfully used the following sdp file, just copy and paste the text using a text editor and save it in the Movies directory as a text file (ie: n800.sdp): v=0 This SDP file can be used once the XX.XX.XX.XX address listed in the file (in two places) is replaced with the IP address at which the streaming server is located. Soups Ready! Be sure the default camera application is not running before the GStreamer pipeline is started. Once the N800 and QTSS have been configured as above, the only thing left to do is start the audio and video streaming from the N800 by running the following command from the terminal (either via SSH session or xterm application on N800): gst-launch-0.10 gconfv4l2src ! video/x-raw-yuv,width=352,height=288,framerate=\(fraction\)15/1 ! hantro4200enc stream-type=1 profile-and-level=1001 ! video/x-h263,framerate=\(fraction\)15/1 ! rtph263ppay mtu=1438 ! udpsink host=XX.XX.XX.XX port=5434 dsppcmsrc ! queue ! audio/x-raw-int,channels=1,rate=8000 ! mulawenc ! rtppcmupay mtu=1438 ! udpsink host=XX.XX.XX.XX port=5432 This command (all one line) creates and starts playing a GStreamer pipeline that encodes the raw audio and video streams, stuffs them into RTP packets, and sends them to the streaming server (change the XX.XX.XX.XX addresses in two places to server IP address). Once the GStreamer pipeline has been started, the N800′s camera can be popped out without the default camera application starting up. Now goto your quicktime client and choose File/Open URL from the menu and type the following: rtsp://XX.XX.XX.XX/n800.sdp (change the XX.XX.XX.XX to server IP address). Enjoy!! |