星期一, 9月 29, 2008

將youtube放入部落格的方法


[NIKE系列]足球真的不一樣

音樂:並沒有特別去用配樂的方式去跟緊劇情,而是以音樂的本質來進行畫面剪接。
音效:機場的主題讓人目眩,幾個足球飛過的聲音,還有直升機和客機的引擎聲,以及機場設施的聲響,讓這部廣告既平易近人,又充滿足球的樂趣。


星期日, 9月 14, 2008

[轉貼]WD 硬碟壞軌修復程式(含使用教學)

3.5吋碟如有懷疑壞軌
WD程式能快速測試硬碟有無壞軌,
又或者可進行寫入零點(低格式化),
不過這通常是侷限於硬碟需安裝在電腦主機上,
萬一遇上了使用 USB 外接裝置時,
WD硬碟用的壞軌修復程式就能夠去修復。
顯示SMAT狀態硬碟實際情況。

1. 不用安裝,直接在Windows上運行。

2. 非 WD 硬碟亦可進行診斷或修復。

3. 外置 USB 硬碟亦可進行診斷或修復。

4. 顯示SMAT 狀態

星期六, 9月 13, 2008

補充說明 Macbook Pro 上面 boot camp安裝 XP 及 升級成 SP3的狀況解決

用Bootcamp 2.0安裝WinXP

一定要用 SP2的版本

電腦不能接上任何USB的裝置(滑鼠or鍵盤)

我弄了整整一天

才找到原因 哇咧!

([問題]boot camp下macbook鍵盤無動作)

裝的時候 要選擇NTFS-快速 這個格式

不要新增或重新作一個硬碟分割

Apple網站上有Boot Camp 2.1 升級程式

[如果升級失敗]

他們建議 2.1的升級要在升級成SP3之前作

而要升級到SP3的時候

SP3安裝程式跑了一陣子之後

若出現      [沒有足夠的空間 至少需要4MB的額外空間…]

(裝了 Bootcamp 2.1之後, 就沒這問題, 因為底下的regedit已經做了,不信自己去查查看)

不用重新開機
請去  開始–>執行–>regedit
找到 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup
在底下右鍵 新增字串值 BootDir 內容為 C:\
不用重新開機

然後重新執行安裝程式 或是重新上去update 就可以

有關 Processing裡面 movie maker的測試 來自 網友PhiLho

Test of MovieMaker video type
« on: May 20th, 2008, 11:27pm »
Quote \ Modify

I tried to make a QuickTime video out of an animation I made, but it was late, so I lacked time. I tried a few codecs (types) at random, and either I got an awful quality, or enormous files! Or exceptions... 
So today I made a little sketch to test all the types, and I thought I could share, since a quick search on the (current) forum doesn't show such study. 
I made a non-trivial (ie. gradient), animated background, and some simple objects to see how they are animated and if they leave trails (traces) on the background. 
Here is the code, if you want to experiment at home: 
Code:
import processing.video.*; 
 
final int CANVAS_WIDTH  = 720; 
final int CANVAS_HEIGHT = 480; 
//~ final int MAX_FRAME_NB  = 720; 
final int MAX_FRAME_NB  = 120; 
 
final color START_COLOR_TOP    = #335533; 
final color START_COLOR_BOTTOM = #55AA55; 
final color END_COLOR_TOP = #333355; 
final color END_COLOR_BOTTOM   = #5555AA; 
 
int xA, yA, xB = CANVAS_WIDTH / 4, yB = CANVAS_HEIGHT / 4; 
 
MovieMaker mm; 
 
color InterpolateColor(color startC, color endC) 

  return lerpColor(startC, endC, (float)frameCount / (float)MAX_FRAME_NB); 

 
void DrawBackground() 

  color topColor = InterpolateColor(START_COLOR_TOP, END_COLOR_TOP); 
  color bottomColor = InterpolateColor(START_COLOR_BOTTOM, END_COLOR_BOTTOM); 
  for (int l = 0; l < CANVAS_HEIGHT; l++) 
  { 
    color sc = lerpColor(topColor, bottomColor, (float)l / (float)CANVAS_HEIGHT); 
    stroke(sc); 
    line(0, l, CANVAS_WIDTH - 1, l); 
  } 

 
void setup() 

  smooth(); 
  frameRate(24); 
  size(CANVAS_WIDTH, CANVAS_HEIGHT); 
 
  // I manually changed the name in the file and the type 
  mm = new MovieMaker(this, width, height, "Test-BASE.mov", 24, 
    MovieMaker.BASE, MovieMaker.BEST); 

 
void draw() 

  if (frameCount > MAX_FRAME_NB) 
  { 
    mm.finish(); 
    delay(1000); 
    exit(); 
  } 
 
  DrawBackground(); 
  fill(#88FFFF); 
  ellipse(xA++ * 4, yA++ * 4, 20, 20); 
  fill(#88AAFF); 
  ellipse(xB-- * 4, yB-- * 4, 20, 20); 
  fill(#88FFAA); 
  ellipse(xA * 4, yB * 4, 20, 20); 
  fill(#88AAAA); 
  ellipse(xB * 4, yA * 4, 20, 20); 
 
  fill(#8888AA); 
  ellipse(xA * 4 + MAX_FRAME_NB, yA * 4, 20, 20); 
  fill(#88AA88); 
  ellipse(xB * 4 - MAX_FRAME_NB, yB * 4, 20, 20); 
  fill(#8888AA); 
  ellipse(xA * 4 + MAX_FRAME_NB, yB * 4, 20, 20); 
  fill(#888888); 
  ellipse(xB * 4 - MAX_FRAME_NB, yA * 4, 20, 20); 
 
  mm.addFrame(); 


Tested with Apple QuickTime 7 for Windows (XP SP2) 
ANIMATION: perfect - 1,800KB 
BASE: empty! - 0 
BMP: perfect, enormous! - 121,500KB 
CINEPAK: Lot of artifacts on background, trail - 1,600KB 
COMPONENT: Little artifacts on background, big! - 81,000KB 
CMYK: empty! - 0 
GIF: empty! - 0 
GRAPHICS: Dithering - 16,600KB 
JPEG: Good quality, reasonable size - 2,500KB 
MS_VIDEO: empty! - 0 
MOTION_JPEG_A: Good quality, reasonable size - 3,200KB 
MOTION_JPEG_B: Good quality, reasonable size - 3,200KB 
RAW: perfect, enormous! - 162,000KB 
SORENSON: Little artifacts on background, small - 780KB 
VIDEO: Small palette (blocky gradient), trails - 470KB 
H261: Lot of artifacts on background - 460KB 
H263: Lot of artifacts on background - 330KB 
H264: Sketch fails (exception quicktime.std.StdQTException[QTJava:7.4.5g],-8960=codecErr,QT.vers:7458000) after writing 120KB 
 
Writing big files slows down a lot the animation... 
 
I hope this will help people.

bootcamp 2.0 安裝XP時 對硬碟NTFS or FAT 32 的討論

用Leopard的bootcamp安裝XP 分割完硬碟, 執行安裝到一半時,突然螢幕出現: 
Press any key to boot from CD....
Disk error
Press any key to restart

不過任憑小弟按什麼鍵就是一直停在那裡, 嘗試關閉電源再打開畫面還是停在上面那三行....

星期二, 9月 09, 2008

Premiere 2.0 安裝完 發生Microsoft Visual C++ error

謝謝您的下載

Microsoft Visual C++ 2008 可轉散發套件 (x86)

星期四, 9月 04, 2008

Mel Wesson是蝙蝠俠系列的環境音樂設計者, 低調不華麗, 但是非常有用的電影音樂類型

他常常說自己是 Ambient Music Designer,
事實上,
就是環境和情緒的氛圍,
而不是跟隨劇情進行的Film Score..
大家去見識一下吧!

SD-HC卡的讀卡機 每個99元 酷! 燦坤有在賣! 抱歉為了拍照塞回去所以有點醜

我用這支來讀相機用的8G SDHC可以了!
之前花很多冤枉錢 買過好幾支(也是在燦坤 也號稱可以讀 SDHC),
今天心想 跟他賭了, 沒想到成功! 而且才99元..

猜猜看 為什麼要K這麼多書? 超幸福的啦!

試試Google Chrome這個超簡單乾淨的瀏覽器-而且超快

這個CHROME看Gmail..好像裝了火箭引擎!