Showing posts with label Tip. Show all posts
Showing posts with label Tip. Show all posts

Saturday, September 8, 2012

News: XBMC on Android, upcoming!




XBMC on Android has finally arrived, not yet fully mature but still it is here !


If you already know XBMC Media Center (and for sure you love it ^^) you also already know that information (if you don't know XBMC yet, no problem you'll be lucky to discover it!)

But the Android apk is not yet official, and so it's not yet available trough Google play.

My recommendation! Go to:
http://forum.xda-developers.com/showthread.php?p=29737360

Download last apk night build and install, please note a few things:

- XBMC for Android is really young and not yet fully functional

- As far as i know Hardware acceleration is for now only available on XIOS DS (which is the hardware XBMC developers used for XBMC Android, only available in the US and seems to be really hard to find)

So, for any other hardware, Playback will be done using CPU and software, playing HD videos may not possible if your CPU can't do it...

- Sound level has to be set before your launch XBMC, sound level is different between Android and XBMC

The only Android device i have right now is a XOOM 3g (first generation) and XBMC runs with more or less success...

But this is very promising and a real great job, i'm pretty sure there won't be too much time to wait before getting greats Android devices (like MK802 and others) and XBMC solutions :-)








Linux TIP : Run an application in a different Language


Sometimes you may need to run an application in different languages, real easy to do with Linux, won't be permanent so you can get back to your initial language.

Here's how:

1. First locate the language locale you want, let's say you want US English, use the command "locale -av" and locate the section you need:


# locale -av


Output example:


locale: en_US.utf8      archive: /usr/lib/locale/locale-archive
-------------------------------------------------------------------------------
    title | English locale for the USA
   source | Free Software Foundation, Inc.
  address | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    email | bug-glibc-locales@gnu.org
 language | English
territory | USA
 revision | 1.0
     date | 2000-06-24
  codeset | UTF-8

2. Open a terminal, you will open your application within this terminal, that way all of your system won't affected but just the application you want


3. Change your locale environnement var  "LC_MESSAGES" to the locale value, in our example:


$ export LC_MESSAGES=en_US.UTF-8


4. Open your application, language should be US

5. To revert, nothing to do, just close your terminal an re-open the application

Note: For this to work on some application, you may have the install the language associated package.
If this does not work, you may lack a language package.

You can also have to deal with "LANG" var, just test.