June 4,2006
June 3,2006
這是最美好的時代...
~狄更思(雙城記)
...繼續閱讀
卑鄙是卑鄙者的通行證
卑鄙是卑鄙者的通行證,高尚是高尚者的墓誌銘。
~北島詩集 回答
寫的好 就不說了 看他寫的吧
http://blog.sina.com.tw/7562/article.php?pbgid=7562&entryid=178
...繼續閱讀
民主本身就是野蠻!!
所謂的民主,仔細想想真是奇怪的制度,不論是非對錯,由多數的意見來決定一件事情該怎麼做,可不可以做,要不要做。『少數服從多數』,這句話,不就是最明顯的野蠻。
雖然現在的選舉制度,是讓我們選出小部分的菁英(理論上),來代人民行使她們的權利,但所選出來的是否真正適任?現在的選舉,所選的不是最有能力的,而是『看起來』最有能力的。演員的部分多於專家的部分。這也許解釋了為什麼一個小演員可以當上美國總統;台灣為什麼現在是由律師團治國。
...繼續閱讀
運輸奇想
說著說著,也說到了關於『運輸』,這項也大幅改變了我們的生活的技術,既使現在這麼習慣於她們的存在。
我想討論的就是關於鐵路,車和飛機這三者的關係。
鐵路,是在運輸上可兼顧速度和量,但是缺點在於他一定要隨著鐵軌移動,在站與站之間。
汽車,基本上功能和火車差不多,但是多了便利性,可以隨意行走。
飛機,我覺得就是空中不需鋪設鐵軌的火車。因為同樣的他也是需要航站才能夠起飛降落,也就是說他的航線是固定的;只是相對上來說,他可以取決最短的路徑 - 兩個航站間。
以上三者的出現,也帶起了許多新興的產業。生活中舉目所及皆是。觀光,旅遊,貨運,郵購,網購等等。
也帶動了一些新的觀念,像是市郊區域,通勤,產銷分離,大賣場
...繼續閱讀
February 28,2006
Compiling VLC with VC-1 (WMV9) support under Ubuntu Breezy
This is a modification from So sue me
Platfrom : ubuntu 5.10 i386
install dependencies available from the Ubuntu repositories (main and universe)
$
sudo apt-get install libwxgtk2.6-dev libdvbpsi3-dev libmpeg2-4-dev
libmad0-dev libasound2-dev libesd0-dev x11proto-video-dev libdvdnav-dev
liba52-0.7.4-dev libflac-dev libfreetype6-dev libid3tag0-dev libogg-dev
libpng12-dev libspeex-dev libtheora-dev libvorbis-dev libxml2-dev
zlib1g-dev gcc g++ automake1.9 autoconf libtool subversion cvs
libx11-dev
Install libdvdcss (DVD support)
$ mkdir ~/videolan ; cd ~/videolan
$ wget http://downloads.videolan.org/pub/videolan/vlc/0.8.2/contrib/libdvdcss-1.2.8.tar.bz2
$ tar -jxvf libdvdcss-1.2.8.tar.bz2 ; cd libdvdcss-1.2.8
$ ./configure --prefix=/usr ; make ; sudo make install
Compile faad2 (AAC support)
$ cd ~/videolan ; wget http://downloads.videolan.org/pub/videolan/vlc/0.8.2/contrib/faad2-20040923.tar.bz2
$ tar -jxvf faad2-20040923.tar.bz2 ; cd faad2-20040923
$ ./configure --prefix=/usr ; cd libfaad ; make
Compile ffmpeg (support for H264 and many other codecs)
$ cd ~/videolan ; cvs -z9 -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg co ffmpeg
$ cd ffmpeg ; ./configure --enable-pp --enable-gpl ; make
Compile libvc1 (WMV9 support)
$ cd ~/videolan ; wget http://nanocrew.net/sw/libvc1-1.0.tar.gz ; tar -zxvf libvc1-1.0.tar.gz
$ wget http://www.multimedia.cx/VC1_reference_decoder_release6.zip
$ unzip VC1_reference_decoder_release6.zip
$ cp VC1_reference_decoder_release6/decoder/*.[ch] libvc1-1.0/src/.
$ cp VC1_reference_decoder_release6/shared/*.[ch] libvc1-1.0/src/.
$ cd libvc1-1.0 ; ./bootstrap ; ./configure --prefix=/usr ; make
Install VLC
$ cd ~/videolan ; svn co svn://svn.videolan.org/vlc/trunk vlc-trunk ( or you can get source snapshot, by the way, I use snapshot-20060227)
$ cd vlc-trunk ; wget -O - http://nanocrew.net/sw/vlc-libvc1.diff | patch -p0 (choose n, if it ask for your confirm)
$ ./bootstrap ; ./configure --with-ffmpeg-tree=../ffmpeg
--enable-faad --with-faad-tree=../faad2-20040923 --enable-esd
--enable-flac --enable-theora --enable-libvc1
--with-libvc1-tree=../libvc1-1.0 --disable-hal
$ make ; sudo make install
Enjoy It!!
Make VLC play WMV9 (Fedora) without VC1
1. download win32codec
You can find here.
Download "essential codecs package", and then uncompress in /usr/lib/win32 or /usr/local/lib/win32
2. update your wxGTK to >2.6.2 (use freshrpms, suggested)
3. install dependencies
yum install libdvbpsi-devel mpeg2dec-devel libmad-devel libdvdnav-devel libdvdcss-devel a52dec-devel flac-devel freetype-devel libid3tag-devel libogg-devel libtheora-devel libvorbis-devel zlib-devel faad2-devel
4. download ffmpeg
$cvs -z9 -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg co ffmpeg
$ cd ffmpeg ; ./configure --enable-pp --enable-gpl ; make
5. download the newest vlc source here
Uncompressed first, and then use the following command
$ ./bootstrap ; ./configure --with-ffmpeg-tree={the dir you put ffmpeg} --enable-faad
--with-faad-tree=../faad2-20040923 --enable-esd --enable-flac
--enable-theora --disable-hal
$ make
ENJOY IT!!
...繼續閱讀
June 1,2005
May 27,2005
May 23,2005
May 20,2005
Google個人化

Google推出個人化首頁囉,現在開始Personalize Your Homepage吧。
可惜還只有英文版的,我想要顯示Weather的資料,輸入台灣的zip code不能用。看了看他的說明, 目前他似乎只支援US的天氣而已,真是殘念啊。
Google Sightseeing
他裡面有許多用Google Maps找到的衛星空照圖,有建築物、人群、陰影....等。
居然還有UFO,真是太妙了 XD
UFO
UFO Updates
今日連結
無名小站的 SSL Certificate
Trackerless Bittorrent
現在幾點鐘? - 介紹一個十分可愛的網站,Human Clock ^^
Macromedia與閃客帝國將結成戰略夥伴關係?
BackBase-Ajax-based RIA
How NOT To Blog At Google - XD

