win32——音樂ApsaraVideo for Media Processing

來源:互聯網
上載者:User

標籤:alias   模式   logs   and   bool   完成   返回   repeat   type   

//音樂ApsaraVideo for Media Processing#include<mmsystem.h>    //winmm.lib的庫支援pragma comment(lib, "winmm.lib") // ?加了lib也可能是動態庫//一、PlaySound      只能放wav檔案//1.例子PlaySound(_T("國歌.wav"), NULL, SND_FILENAME | SND_LOOP | SND_ASYNC);//2.原型BOOLWINAPIPlaySoundA(_In_opt_ LPCSTR pszSound,    //檔案名稱_In_opt_ HMODULE hmod,        //載入模式_In_ DWORD fdwSound            //播放模式);//3.播放模式SND_FILENAME    //指定的wav檔案載入SND_RESOURCE    //資源載入SND_SYNC        //同步播放,播放完之後PlaySound函數才結束SND_ASYNC        //非同步播放,調用完成後,PlaySound立刻返回,非堵塞SND_LOOP        //迴圈播放, 必須和非同步播放一起//二、 mciSendString //MCI系列函數(媒體控制項介面),可以播放大部分的音樂檔案,比如說mp3//1.例子mciSendString(_T("open see_you_again.mp3 type MPEGVideo alias mymusic"), NULL, 0, NULL);mciSendString(_T("play mymusic repeat"), NULL, 0, NULL);mciSendString(_T("close mymusic"), NULL, 0, NULL);//2.原型WINMMAPIMCIERRORWINAPImciSendStringW(_In_ LPCWSTR lpstrCommand,_Out_writes_opt_(uReturnLength) LPWSTR lpstrReturnString,_In_ UINT uReturnLength,_In_opt_ HWND hwndCallback);

 

win32——音樂ApsaraVideo for Media Processing

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.