BIOS’unuzda linux!

Yeni bir laptop mu aldınız?

Büyük ihtimalle ana kartınız Linux yüklü gelecek.

Artık web’de dolaşmak, resim izlemek yada müzik dinlemek – hatta MSN/Yahoo/ICQ/Skype’de chat yapmak için windows yada Linux’ün yüklenmesini beklemenize gerek yok.

Splashtop denilen opensource bir işletim sistemi, birçok laptop’un ana kartına kondu bile. Bilgisayarı farklı bir düğme ile açıyorsunuz, ve 5-10 saniye içinde bilgisayarınız hazır hale geliyor! Evet, o kadar hızlı!

Splashtop şu anda Asus, Lenovo ve VoodooPC notebook/netbook larla geliyor. Ayrıca ASUS masa üstü bilgisayarlarında ve ana kartlarında da bulunuyor.

Daha fazla bilgi için www.splashtop.com u ziyaret edebilirsiniz.

Bilgisayarı bir düğme ile açıp 10 saniye sonra PIDGIN ve FIREFOX ile karşılaşmak mükemmel bir duygu!

Script for any-file to 3GP conversion

The following script should convert any video file (avi,mpeg, etc) to 3GP thats playable on many Nokia (and others) phones:

 #!/usr/bin/rexx
parse arg file
t = lastpos(‘.’,file)
if t=0 then exit
fn=left(file,t-1)
ft=substr(file,t+1)

‘mencoder “‘file'” -nosound -noaspect -ovc lavc -lavcopts vcodec=mpeg4 -vf’ ,
‘expand=176:144,scale=176:144  -o’ fn’.avi -ofps 12′

‘mplayer -vo null -ao pcm -af resample=8000,volume=+4db:sc’ file

‘ffmpeg -y -i “‘fn’.avi” -i audiodump.wav -b 48k -ac 1′ ,
‘-ab 12.2k -map 0.0 -map 1.0′ fn’.3gp’

Encoding movies for Nokia E90

If you’d like to encode movies for a Nokia E90 (Probably for others as well),

the following script will do the trick. This one requires ObjectRexx, available free from the net.

#!/usr/bin/rexx
/*
640×480@15 or 25fps for bitrate 400, or 25fps for bitrates 800 and 1500
*/

parse arg file
t = lastpos(‘.’,file)
if t=0 then exit
fn=left(file,t-1)
ft=substr(file,t+1)

rez = “800×352”
rez = “704×576”
rez = “640×480”

vKBitrate = 500
aKbitrate = 192
fps = 15
vformat = “mp4”

vbitrate = vKbitrate * 8
abitrate =  aKbitrate * 8

t = ‘ffmpeg -y -i “‘file'” -s ‘ rez ‘ -async 1 -vcodec libx264’,
‘-b 200k -maxrate 384k -bufsize 384 -coder 0 -level 13 -acodec libfaac’,
‘ -ab 128k -threads 2 “‘fn’.mp4″‘

say t
t