在 C 中播放 mp3 文件
Play mp3 file in C
我想在 Internet 上播放 mp3 文件而不下载它们。所以,我使用 libcurl 将其作为内存中的流获取,如下所示:
static size_t use_data(void *ptr, size_t size, size_t nmemb, FILE *stream) {
/* stream is NULL */
/* What to do with the stream of data ? */
}
CURLcode download_file(const char *url, const char *path, curl_progress_callback progress) {
CURL *curl;
CURLcode res = 0;
FILE *fp;
if ((curl = curl_easy_init())) {
if (progress) {
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress);
}
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, use_data);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
fclose(fp);
}
return res;
}
如何解析内存中的流来播放声音?
恕我直言,最简单的方法是使用轻量级 MP3 解码库。例如,minimp3 完成它的工作并且只包含 2 个文件。
API非常简单,可以在这里找到一个用法示例:https://github.com/corporateshark/PortAMP/tree/master/src/Decoders/MP3
我想在 Internet 上播放 mp3 文件而不下载它们。所以,我使用 libcurl 将其作为内存中的流获取,如下所示:
static size_t use_data(void *ptr, size_t size, size_t nmemb, FILE *stream) {
/* stream is NULL */
/* What to do with the stream of data ? */
}
CURLcode download_file(const char *url, const char *path, curl_progress_callback progress) {
CURL *curl;
CURLcode res = 0;
FILE *fp;
if ((curl = curl_easy_init())) {
if (progress) {
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress);
}
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, use_data);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
fclose(fp);
}
return res;
}
如何解析内存中的流来播放声音?
恕我直言,最简单的方法是使用轻量级 MP3 解码库。例如,minimp3 完成它的工作并且只包含 2 个文件。
API非常简单,可以在这里找到一个用法示例:https://github.com/corporateshark/PortAMP/tree/master/src/Decoders/MP3