C++实现显示MP3文件信息的方法

 更新时间:2015年06月15日 09:55:03   作者:红薯  
这篇文章主要介绍了C++实现显示MP3文件信息的方法,可实现显示如作者、专辑等(libZPlay)信息的功能,需要的朋友可以参考下

本文实例讲述了C++实现显示MP3文件信息的方法。分享给大家供大家参考。具体实现方法如下:

/**
 * This is small example how to use libZPlay library to play files.
 * This example is using OpenFile functions to open disk files and play.
 */
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <olectl.h>
#include <ole2.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
#include <dos.h>
#include <conio.h>
#include "../include/libzplay.h"
using namespace libZPlay;
ZPlay* player;
int __stdcall CallbackFunc(void* instance, void *user_data, TCallbackMessage message, unsigned int param1, unsigned int param2);
int main(int argc, char **argv)
{
  // clear screen
  system("CLS");
  // create class instance
  player = CreateZPlay();
  // chek if we have class instance
  if(player == 0)
  {
    printf("Error: Can't create class instance !nPress key to exit.n");
    getch();
    return 0;  
  }
  // get library version
  int ver = player->GetVersion();
  // check if we have version 2.00 and above
  if(ver < 200)
  {
    printf("Error: Need library version 2.00 and above !nPress key to exit.\r\n");
    getch();
    player->Release();
    return 0;
  }
  // display version info
  printf("libZPlay v.%i.%02i\r\n\r\n", ver / 100, ver % 100);
  if(argc > 1) 
  {
    TID3InfoEx id3_info;
    if(player->LoadFileID3Ex(argv[1], sfAutodetect, &id3_info, 1)) // loading ID3v2
    {
      printf("Title:  %s\r\n", id3_info.Title);
      printf("Artist: %s\r\n", id3_info.Artist);
      printf("Album:  %s\r\n", id3_info.Album);
      printf("Year:  %s\r\n", id3_info.Year);
      printf("Comment: %s\r\n", id3_info.Comment);
      printf("Genre:  %s\r\n", id3_info.Genre);
      printf("Track:  %s\r\n\r\n", id3_info.TrackNum);
      printf("Artist1 : %s\r\n", id3_info.AlbumArtist );
      printf("Composer: %s\r\n", id3_info.Composer );
      printf("Original: %s\r\n", id3_info.OriginalArtist );
      printf("Copyright: %s\r\n", id3_info.Copyright );
      printf("URL:    %s\r\n", id3_info.URL );
      printf("Encoder:  %s\r\n", id3_info.Encoder );
      printf("Publisher: %s\r\n", id3_info.Publisher );
      printf("BPM:    %u\r\n", id3_info.BPM);
      printf("MIME:   %s\r\n", id3_info.Picture.MIMEType);
      printf("TYPE:   %u\r\n", id3_info.Picture.PictureType);
      printf("Desc:   %s\r\n", id3_info.Picture.Description);
      printf("Size:   %u\r\n", id3_info.Picture.PictureDataSize);
      // draw picture on desktop window
      player->DrawBitmapToHWND(NULL, 0, 0, 0, 0, id3_info.Picture.hBitmap);
    }
    else
    {
      printf("No ID3 data\r\n\r\n");
    }
   }
   else
   {
   // no filename in argument
    player->Release(); // delete ZPlay class
    char *end = strrchr(argv[0], '\');
    if(end && *(end + 1) != 0)
      end++;
    else
      end = argv[0];
    printf("Usage: %s filename\r\n\r\nPress key to exit\r\n", end);
    getch();
    return 0;
   }
  getch();
}

希望本文所述对大家的C++程序设计有所帮助。

相关文章

  • C语言中const和指针的秘密你知道吗

    C语言中const和指针的秘密你知道吗

    这篇文章主要为大家详细介绍了C语言中const和指针的秘密,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-02-02
  • C语言求阶乘之和的三种实现方法(先阶乘再累加)

    C语言求阶乘之和的三种实现方法(先阶乘再累加)

    对于C/C++初学者来说,可能会经常遇到如计算阶乘等问题,下面这篇文章主要给大家介绍了关于C语言求阶乘之和的三种实现方法,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2022-07-07
  • C语言实现贪吃蛇游戏代码

    C语言实现贪吃蛇游戏代码

    这篇文章主要为大家详细介绍了C语言实现贪吃蛇游戏代码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-09-09
  • Mac下使用Eclipse编译C/C++文件出现 launch failed, binary not found 解决方案

    Mac下使用Eclipse编译C/C++文件出现 launch failed, binary not found 解决方

    这篇文章主要介绍了Mac下使用Eclipse编译C/C++文件出现 launch failed, binary not found 解决方案,需要的朋友可以参考下
    2014-10-10
  • c++图像处理:24位真彩图颜色变换实例

    c++图像处理:24位真彩图颜色变换实例

    下面小编就为大家带来一篇c++图像处理:24位真彩图颜色变换实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-01-01
  • C语言中结构体实例解析

    C语言中结构体实例解析

    大家好,本篇文章主要讲的是C语言中结构体实例解析,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下
    2022-02-02
  • C语言实现五子棋功能全解析

    C语言实现五子棋功能全解析

    五子棋是经典的棋牌类游戏,很多人都玩过,那么如何用Python实现五子棋呢,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • 详解C++赋值操作符重载

    详解C++赋值操作符重载

    这篇文章主要介绍了C++赋值操作符重载的相关资料,帮助大家更好的理解和学习c++,感兴趣的朋友可以了解下
    2020-08-08
  • 关于C语言和命令行之间的交互问题

    关于C语言和命令行之间的交互问题

    这篇文章主要介绍了C语言和命令行之间的交互,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-07-07
  • C++线程中几类锁的详解

    C++线程中几类锁的详解

    这篇文章主要为大家介绍了C++线程中几类锁,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2021-11-11

最新评论