使用Windows内置MP3解码器播放音频?

时间:2011-11-14 12:27:36

标签: c++ c winapi audio mp3

自从Windows Media Player 6.1以来,我如何使用自称为Windows内置的MP3解码器?

我想播放一个mp3文件,而不必依赖任何其他第三方库,例如LAME.DLL。

我更新了问题以更好地适应我得到的答案,因为我非常喜欢它们。 Related question.

2 个答案:

答案 0 :(得分:9)

不确定。与Windows API中的许多其他内容一样,播放.mp3文件的方法不止一种。以编程方式执行此操作的“最简单”方法是使用DirectShow。 MSDN文档甚至在名为"How To Play a File"的页面上包含一个最小代码示例,以帮助您入门:

// Visual C++ example
#include <dshow.h>
#include <cstdio>
// For IID_IGraphBuilder, IID_IMediaControl, IID_IMediaEvent
#pragma comment(lib, "strmiids.lib") 

// Obviously change this to point to a valid mp3 file.
const wchar_t* filePath = L"C:/example.mp3"; 

int main()
{
    IGraphBuilder *pGraph = NULL;
    IMediaControl *pControl = NULL;
    IMediaEvent   *pEvent = NULL;

    // Initialize the COM library.
    HRESULT hr = ::CoInitialize(NULL);
    if (FAILED(hr))
    {
        ::printf("ERROR - Could not initialize COM library");
        return 0;
    }

    // Create the filter graph manager and query for interfaces.
    hr = ::CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, 
                        IID_IGraphBuilder, (void **)&pGraph);
    if (FAILED(hr))
    {
        ::printf("ERROR - Could not create the Filter Graph Manager.");
        return 0;
    }

    hr = pGraph->QueryInterface(IID_IMediaControl, (void **)&pControl);
    hr = pGraph->QueryInterface(IID_IMediaEvent, (void **)&pEvent);

    // Build the graph.
    hr = pGraph->RenderFile(filePath, NULL);
    if (SUCCEEDED(hr))
    {
        // Run the graph.
        hr = pControl->Run();
        if (SUCCEEDED(hr))
        {
            // Wait for completion.
            long evCode;
            pEvent->WaitForCompletion(INFINITE, &evCode);

            // Note: Do not use INFINITE in a real application, because it
            // can block indefinitely.
        }
    }
    // Clean up in reverse order.
    pEvent->Release();
    pControl->Release();
    pGraph->Release();
    ::CoUninitialize();
}

请务必通读the DirectShow documentation以了解在正确的DirectShow应用程序中应该发生的事情。


要将媒体数据“提供”到图表中,您需要实现IAsyncReader。幸运的是,the Windows SDK includes a sample实现了一个名为IAsyncReader的{​​{1}}。该示例将媒体文件读入内存缓冲区,然后使用CAsyncReader将数据流式传输到图形中。这可能就是你想要的。在我的机器上,样本位于文件夹CAsyncReader

答案 1 :(得分:3)

您可以使用mciSendString http://msdn.microsoft.com/en-us/library/ms709492%28VS.85%29.aspx控制音频频道(以便播放任何内容,包括MP3)

这是一个例子(它在C#中,但它的原理基本相同):

http://social.msdn.microsoft.com/forums/en-US/Vsexpressvcs/thread/152f0149-a62a-446d-a205-91256da7845d

这与C中的原理相同:

http://www.daniweb.com/software-development/c/code/268167