由於需要用到實時讀取影音文件(mp3、wma、wmv …)播放時間長度的功能,搜索到的結果有:
(1)硬編碼分析影音文件,需要分析各種媒體格式,代價最大;
(2)使用WMLib SDK,需要熟悉SDK各個接口,且不同版本的WM接口有別,代價次之;
(3)使用系統Shell32的COM接口,直接訪問媒體文體屬性,取其特定內容,代價最小。
顯然第3種方案見效最快,立即操刀:
①引用Shell32底層接口c:\windows\system32\shell32.dll,VS自動轉換成Interop.Shell32.dll(注:64位系統和32位系統生成的Interop.Shell32.dll不一樣)
②編碼讀取播放時間長度:
/// <summary>
/// 獲取媒體播放時間長度,格式00:00:00。
/// </summary>
/// <param name="path">媒體路徑</param>
/// <returns>播放時間長度</returns>
public static string GetMediaDuration(this string path)
{
try
{
Shell32.Shell shell = new Shell32.ShellClass();
Shell32.Folder folder = shell.NameSpace(path.Substring(0, path.LastIndexOf("\\")));
Shell32.FolderItem folderItem = folder.ParseName(path.Substring(path.LastIndexOf("\\") + 1));
return folder.GetDetailsOf(folderItem, 21);
}
catch (Exception ex)
{
ex.Error();
return null;
}
}
③調用結果,在Win2003上應使用folder.GetDetailsOf(folderItem, 21) ,而在Vista上應使用folder.GetDetailsOf(folderItem, 27) ,主要是因為不同系統下文件屬性索引順序不同造成。只要右鍵單擊文件屬性,能看到的媒體屬性都能取到,可以換不同的索引值來取。如下所示,取出的時間長度是 00:03:52,目標完成。
總結:立竿見影。