January 18, 2012
ICS beta 1 is out please step forward to this release! http://www.ceh-photo.de/blog/?p=464
So it takes some/a lot of time to develop this new build (more like expected like every time), but I tried to put as much as possible into beta3. But I struggled hard with the integration of something like a slider mechanism on a phone, if you change from tablet to laptop mode and vice versa. My goal was automatically disabling/enabling onscreen keyboard and locking screen rotation in laptop mode, but it seems like this is one of these things which are not really well implemented in honeycomb and may a reason why google published that code so late (google sayed some things are really hacked together in honeycomb… and if I compare responsible files in honeycomb and ics there are a lot of changes and commented dead code in honeycomb). So the result is, I got really deep in touch with android internals, but I could not solve the problem and decided to step back and publish my new beta 3 without this feature, because I had already done a lot (see below). Inside the tips and information sections I will try to answer some unanswered questions from comments.
December 19, 2011
[Beta 3 available: http://www.ceh-photo.de/blog/?p=430]
After some positive feedback on beta 1 release of Honeycomb-x86 for Acer1825 series convertible laptops I spend some time (too much time I think ;-)) on improving it.
So now the second release (beta 2) is available:
December 8, 2011
[Beta 2 available: http://www.ceh-photo.de/blog/?p=417]
So its long time ago that I wrote something about Android-x86 and my Acer1825 but now I could tell, that I was not lazy in between.
I was working on builds based on the former work for froyo-x86 of arobase (we are still in contact, but he does not own the Acer1825 anymore).
October 8, 2011
I have figured out a solution for watching HD videos on my old XBOX classic. This attempt should work also for other low performance devices which are not able to render HD media standalone.
The basic idea is using UPNP (because many devices are able to use it) and an UPNP server which supports live transcoding of the media. I choose mediatomb on my debian desktop system(also available for windows…).
After you have installed mediatomb you need add some directories/media`s with the web-interface. I think it is not necessary to explain that step, because its quite easy. If someone needs support please ask. After you have added some media with HD content, in my case some movies inside MKV containers, you need to edit the configuration.
On debian mediatomb configuration is stored in /etc/mediatomb/config.xml. Open this file with an editor and do following changes inside the transcoding section. Changes are marked bold. <transcoding enabled=”yes“>
<mimetype-profile-mappings> <transcode mimetype="video/x-flv" using="vlcmpeg"/> <transcode mimetype="application/ogg" using="vlcmpeg"/> <transcode mimetype="application/ogg" using="oggflac2raw"/> <transcode mimetype="audio/x-flac" using="oggflac2raw"/> <transcode mimetype="video/x-matroska" using="vlcmpeg"/> </mimetype-profile-mappings> <profiles> <profile name="oggflac2raw" enabled="no" type="external"> <mimetype>audio/L16</mimetype> <accept-url>no</accept-url> <first-resource>yes</first-resource> <accept-ogg-theora>no</accept-ogg-theora> <agent command="ogg123" arguments="-d raw -o byteorder:big -f %out %in"/> <buffer size="1048576" chunk-size="131072" fill-size="262144"/> </profile> <profile name="vlcmpeg" enabled="yes" type="external"> <mimetype>video/mpeg</mimetype> <accept-url>yes</accept-url> <first-resource>yes</first-resource> <accept-ogg-theora>yes</accept-ogg-theora> <agent command="vlc" arguments="-I dummy %in --sout #transcode{venc=ffmpeg,vcodec=mp2v,vb=4096,fps=25,aenc=ffmpeg,acodec=mpga,ab=192,samplerate=44100,channels=2}:standard{access=file,mux=ps,dst=%out} vlc:quit"/> <buffer size="14400000" chunk-size="512000" fill-size="120000"/> </profile> </profiles> </transcoding>
April 22, 2011
I made huge progress on using my installed androidx86 on my Acer1825(build). Today I found out, how to install all google apps included synchronization of mail,contacts.. and all funny apps like google talk, maps, youtube and don`t forget the original google market!!! And I can say it works. I can’t believe, it works!
April 17, 2011
Most of you know that nice Androidx86 release from arobase for the Acer1825, but a lot of you asked for installation on hard-disk. I have done it and here comes, how it works:
First my start configuration: I had a installation of Windows7 (seldom used) (NTFS) and Ubuntu 10.10 on LVM(ext4), no free space for a new partition.
March 27, 2011
Today I have had the problem of generating my latex tables for acronyms and glossary with glossaries package and makeindex with Texmaker. The main problem is, that Texmaker only allows one makeindex command at the same time.
To solve that problem I wrote a workaround bash script, which I named makeindex_acro_glos.run
March 10, 2011
This guide is writte for my Acer 1825 but it should work on all linux devices which need a onscreen keyboard like onboard.
I got the idea of building this script from Tom/drnessie from the ubuntuforums.org (http://ubuntuforums.org/showthread.php?t=1486671&page=17), because he tried to make a improvement of my onscreen keyboard show/hide script from this post.