• 大小: 189KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-07-20
  • 语言: 其他
  • 标签: Qt5  QMediaPlayer  

资源简介

采用Qt5的QMediaPlayer制作的音乐播放器,皮肤是模仿的千千静听的皮肤,支持歌词同步,在线更新歌词(在线更新歌词部分功能只写了部分),欢迎大家指正。

资源截图

代码片段和文件信息

/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** “Redistribution and use in source and binary forms with or without
** modification are permitted provided that the following conditions are
** met:
**   * Redistributions of source code must retain the above copyright
**     notice this list of conditions and the following disclaimer.
**   * Redistributions in binary form must reproduce the above copyright
**     notice this list of conditions and the following disclaimer in
**     the documentation and/or other materials provided with the
**     distribution.
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
**     of its contributors may be used to endorse or promote products derived
**     from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** “AS IS“ AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT
** LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL
** SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT
** LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE
** DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.“
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include “player.h“

#include 
#include 

int main(int argc char *argv[])
{
#ifdef Q_WS_MAEMO_6
    //Meego graphics system conflicts with xvideo during fullscreen transition
    QApplication::setGraphicsSystem(“raster“);
#endif
    QApplication app(argc argv);
    QTextCodec::setCodecForLocale(QTextCodec::codecForName(“UTF-8“));
    Player player;

#if defined(Q_WS_SIMULATOR)
    player.setAttribute(Qt::WA_LockLandscapeOrientation);
    player.showMaximized();
#else
    player.show();
#endif

    return app.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-02-13 23:19  player\
     文件        2352  2015-02-13 23:01  player\123.lrc
     目录           0  2015-02-23 16:46  player\bin\
     目录           0  2015-02-13 09:28  player\bin\data\
     目录           0  2015-02-13 09:28  player\bin\data\database\
     文件       18432  2015-02-11 22:52  player\bin\data\database\player.db
     目录           0  2015-02-23 16:52  player\bin\data\image\
     文件        6008  2015-02-07 19:14  player\bin\data\image\dmc.jpg
     目录           0  2015-02-13 09:28  player\debug\
     文件       18432  2015-02-07 14:02  player\debug\MusicPlayer.sqllite
     目录           0  2015-02-13 09:28  player\image\
     文件        1551  2013-11-08 18:38  player\image\browser_1.png
     文件        1695  2013-11-08 18:38  player\image\browser_2.png
     文件        1695  2013-11-08 18:38  player\image\browser_3.png
     文件        1551  2013-11-08 18:38  player\image\browser_4.png
     文件         274  2013-11-05 12:40  player\image\close_4.png
     文件         274  2013-11-05 12:40  player\image\close_hover.png
     文件         273  2013-11-05 12:40  player\image\close_press.png
     文件         274  2013-11-05 12:40  player\image\close_unhover.png
     文件        1205  2013-11-08 18:38  player\image\lyric_1.png
     文件        1381  2013-11-08 18:38  player\image\lyric_2.png
     文件        1381  2013-11-08 18:38  player\image\lyric_3.png
     文件        1205  2013-11-08 18:38  player\image\lyric_4.png
     文件         225  2013-11-05 14:31  player\image\minimize_4.png
     文件         225  2013-11-05 14:31  player\image\minimize_hover.png
     文件         225  2013-11-05 14:31  player\image\minimize_press.png
     文件         225  2013-11-05 14:31  player\image\minimize_unhover.png
     文件         552  2013-11-05 17:14  player\image\mute_1.png
     文件         664  2013-11-05 17:14  player\image\mute_2.png
     文件         664  2013-11-05 17:14  player\image\mute_3.png
     文件         552  2013-11-05 17:14  player\image\mute_4.png
............此处省略88个文件信息

评论

共有 条评论