Qt简单离线音乐播放器

有上传本地音乐文件,播放,暂停,拖拉进度条等功能的播放器。

mainwindow.cpp

cpp 复制代码
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QMediaPlayer>
#include <QFileDialog>
#include <QTime>
MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    player = new QMediaPlayer(this);
    // 当播放状态改变时,更新按钮的状态
    connect(player,&QMediaPlayer::stateChanged,this,&MainWindow::onStateChanged);
    // 当音乐文件的总时间改变时,更新滑块的范围
    connect(player, &QMediaPlayer::durationChanged, ui->slider, &QSlider::setMaximum);
    // 当播放位置改变时,更新滑块的值
    connect(player, &QMediaPlayer::positionChanged, ui->slider, &QSlider::setValue);
    // 当滑块的值改变时,设置播放位置
    connect(ui->slider, &QSlider::valueChanged, player, &QMediaPlayer::setPosition);

    connect(ui->slider, &QSlider::valueChanged, [this](int value) {
        // 将滑块的值转换为时间格式,并更新 timelabel
        QTime time(0, value / 60, value % 60);
        ui->timelabel->setText(time.toString("mm:ss"));
    });

}

MainWindow::~MainWindow()
{
    delete ui;
}


void MainWindow::on_playButton_clicked()
{
    //if(player->state() == QMediaPlayer::PlayingState)
    //{
        //player->pause();
    //}else{
        //player->play();
    //}
    player->play();
}

void MainWindow::onStateChanged(QMediaPlayer::State state)
{
    //if(state == QMediaPlayer::PlayingState)
    //{
        //ui->playButton->setText("Pause");
    //}
    //else
    //{
       //ui->playButton->setText("Play");
    //}
}

void MainWindow::on_openAction_triggered()
{
    QString filename = QFileDialog::getOpenFileName(this, "Open a File", "", "Audio File(*.mp3)");
    player->setMedia(QUrl::fromLocalFile(filename));
    player->play();
}

void MainWindow::on_pauseButton_clicked()
{
    player->pause();
}


void MainWindow::on_OpenFileButton_clicked()
{
    on_openAction_triggered();
}


void MainWindow::on_slider_actionTriggered(int action)
{

}

void MainWindow::on_timelabel_linkActivated(const QString &link)
{

}

.h:

cpp 复制代码
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QMediaPlayer>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_timelabel_linkActivated(const QString &link);

    void on_playButton_clicked();


    void on_slider_actionTriggered(int action);

    void on_pauseButton_clicked();

    void onStateChanged(QMediaPlayer::State state);

    void on_openAction_triggered();

    void on_OpenFileButton_clicked();

private:
    Ui::MainWindow *ui;
    QMediaPlayer *player;
};
#endif // MAINWINDOW_H

.pro:

cpp 复制代码
QT       += core gui
QT       += multimedia

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

CONFIG += c++11

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += \
    main.cpp \
    mainwindow.cpp

HEADERS += \
    mainwindow.h

FORMS += \
    mainwindow.ui

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target


相关推荐
小短腿的代码世界17 小时前
Qt进程间通信全体系深度解析:从QSharedMemory到本地Socket的七层武器
开发语言·qt
学习,学习,在学习18 小时前
Qt工控仪器程序框架设计详解(工控多仪器控制版本)
开发语言·c++·qt
mengzhi啊21 小时前
qt程序release版在Windows运行崩溃。使用dump文件+vs2022进行解析+豆包
qt
sycmancia1 天前
Qt——拖放事件深度剖析
开发语言·qt
长沙红胖子Qt1 天前
项目实战:Qt圆形百分比进度控件基础设计构架Demo
qt·圆形进行百分比控件
我在人间贩卖青春1 天前
重学Qt——模型视图结构
qt
qq_401700411 天前
Qt如何 发送带结构体数据的信号
开发语言·qt
xiaoye-duck1 天前
Qt 初识核心:从 HelloWorld 到基础控件,吃透对象树与内存管理
开发语言·qt
小短腿的代码世界1 天前
KDReports源码深度解析:Qt报表引擎如何做到“所见即所得“?从模板引擎到PDF导出的完整渲染管线揭秘
网络·qt·pdf
小短腿的代码世界1 天前
Qt布局系统源码深度解析:QLayout如何操控你的界面——从QBoxLayout到QGridLayout的底层引擎揭秘
开发语言·数据库·qt