如果引用或轉貼,麻煩註明出處與本網誌連結,否則視為侵權。

2012年5月23日

怎樣用AutoIT播放影音檔

作者: Fred Wang (FW知識瑣記) 日期: 2012/5/23

透過播放器如Windows Media Player, VLC, iTunes等自動播放影音,可以利用AutoIT的兩個Process Management指令ShellExecute與Run就可以達成

程式案例
$exeFile = "C:\Program Files\Windows Media Player\wmplayer.exe" ;播放器執行檔的路徑
$wavFile = "B:\BILD0982.WAV" ;影音檔的路徑
; 方法一 用ShellExecute
ShellExecute($exeFile,$wavFile)

; 方法二 用Run
$cmd = $exeFile & " " & $wavFile
Run($cmd)