2007/05/21

[linux] 用 mplayer 抓影片長度

這招要感謝同事山姆的貢獻:

$command = "mplayer -identify b.mpg -endpos 1 2>/dev/null -ao null -vo null |grep ID_LENGTH|cut -d \"=\" -f 2";

exec($command, $out);
echo strftime("%H:%M:%S\n",$out[0]);


這樣上傳的影片就不用再靠使用者點 plugin 了~

沒有留言:

[Windows] git-bash 底下的工具

因為工作轉到 Windows 平台上的關係,所以很多工具改到 Windows 上面運作,跟著在 TortoiseGit 底下使用 git-bash 來維護自己的專案原始碼。結果就是裝了前面提過的 auto-hotkey 使用熱鍵來提昇自己的平台操作速度; 但除了 hotkey...