Wednesday, September 12, 2007
Convert YouTube Videos To Simulated Stereo MP3s
read more | digg story
Friday, September 07, 2007
Steve Jobs' iPhone open letter: What he says and what he *means*
read more | digg story
Wednesday, September 05, 2007
OOXML, the past. ODF, the future.
read more | digg story
Monday, September 03, 2007
Ubuntu Weekly Newsletter #55
read more | digg story
Thursday, August 23, 2007
another one
Sorry, you are ineligible to sign up for Facebook.
Facebook | Sign Up for Facebook
technorati tags:i hate, facebook
Blogged with Flock
the most fsked up registration form
they forgot poland
another way to hate flash/adobe
yet another upgrade to an propietary extension , (h.264) they give you a little full screen but they keep the servers closed and small details and now the crashes will
be fully accelerated
# I am not in a position able to explain to you why we will not allow 3rd party streaming servers to stream H.264 video or AAC audio into the Flash Player. What I can tell you is that we do not allow this without proper licensing. Refer to Adobe's friendly Flash Media Server sales staff for more information.
kaourantin.net: What just happened to video on the web?
technorati tags:hate, flash, adobe, macrobe, h.264, youtube, linux, streaming, mpeg4
Blogged with Flock
Wednesday, August 22, 2007
old ubuntu breezy repository changed it's name
So just change the lines e.g. "archive.ubuntu.com ..." to "old-releases.ubuntu.com ..." in your /etc/apt/sources.list or using the GUI in Synaptic/Adept.
Seems like old Ubuntu repositories are gone [Archive] - Phoronix Forums
Blogged with Flock
old ubuntu breezy repository changed it's name
So just change the lines e.g. "archive.ubuntu.com ..." to "old-releases.ubuntu.com ..." in your /etc/apt/sources.list or using the GUI in Synaptic/Adept.
Seems like old Ubuntu repositories are gone [Archive] - Phoronix Forums
Blogged with Flock
Friday, August 17, 2007
install the unplug plugin for firefox
install mencoder
$sudo apt-get install mencoder
download the video with unplug (right click and choose the unplug from menu)
in my case i have this video
extract the mp3 from the flv (audio is MP3-encoded in the movie file)
ffmpeg -i doors_when_the_music_is_over.flv -vn -acodec copy doors_when_the_music_is_over.mp3
The audio codec "copy" tells ffmpeg to use the same codec for encoding as was
used for decoding. Also, since we're not overriding any of the other audio
parameters such as sample rate or bit rate, we should be retrieving the sound
track exactly as it was multiplexed into the movie file.
you can read more about working with ffmpeg
Monday, August 13, 2007
Ubuntu Weekly Newsletter #52
read more | digg story
Friday, August 10, 2007
Qloud Facebook App is Live
You can check it out here: www.facebook.com/apps/application.php?id=2376424094
i use it mainly for playing youtube related tags (let's say doors)
Thursday, August 09, 2007
Tuesday, August 07, 2007
i like the site a lot (ovi's site )
http://www.boxlinks.ro/link/FLAMEROBIN-1492.html
Friday, July 13, 2007
in parallel machines and without adware
When memory is small is time for xubuntu , also sometime
we try gobuntu.
Is like running an os in an bottle , viruses can't escape if you try windows vm
is good to reduce the number of servers needed for testing, and trying new stuff (ubuntu gutsy gibbon) or weird operating systems reactos , vista
or antique stuff : redhat, or centos
with vmware server we run many operating systems in parallel , each os distributed for one cpu
is good also for migrations from windows to linux and running both
just one good step to world domination and and fixing the bug #1 https://launchpad.net/ubuntu/+bug/1
http://mshiltonj.com/software_wars/current/
http://homepage.sunrise.ch/mysunrise/ekeller00/EricKellerUbuntuPage.html
http://www.oszoo.org/wiki/index.php/Main_Page
http://www.oszoo.org/wiki/index.php/Category:OS_images
Thursday, July 12, 2007
In order to set up a new site, you will need to combine both, the source AND the dummy package by extracting them to the same folder.)
download the dummy with source zip
unzip typo3_src+dummy-4.1.5.zip
Run these commands as root in the dummy directory:
# chmod -R g+w,o-rwx fileadmin typo3conf typo3temp uploads
upload files with ftp (ftp in my case)
7 In your browser, visit
http://[your.site.name]/cms/
8 Follow the instructions in the 1-2-3 install tool
9 From this point, you can access the backend through
http://[your.site.name]/cms/typo3/
with the username "admin" and password "password".
typo3.org: Packages
technorati tags:typo3, mysql, php, unix, ubuntu
Blogged with Flock
ffmpeg accepts only encoding 3gp , 2gp , mp4 files (E- means encoding D-deconding)
ffmpeg -formats | grep 3gp
E 3g2 3gp2 format
E 3gp 3gp format
DE amr 3gpp amr file format
D mov,mp4,m4a,3gp,3g2,mj2 QuickTime/MPEG4/Motion JPEG 2000 format
ffmpeg -formats | grep mp4
E mp4 mp4 format
E psp psp mp4 format
so it is needed that mencoder to be used to decode the
3gp,2gp,mp4 files
mencoder example.3g2 -nosound -ovc lavc -lavcopts
vcodec=mpeg4 -o example.avi
mplayer -vo null -ao pcm -af
resample=8000,volume=+4db:sc example.3g2
ffmpeg -i example.avi -i audiodump.wav example.flv