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


相关推荐
慧都小项3 天前
当边缘AI上产线:QtitanDocking 如何让工业 HMI 实现多视图协同
人工智能·qt·ui·边缘计算·qt6.3
Quz3 天前
QML SwipeDelegate 滑动委托
qt
Quz3 天前
QML 列表中的四种委托:ItemDelegate、CheckDelegate、RadioDelegate、SwitchDelegate
qt
实心儿儿3 天前
Qt — 显示类控件
qt
江湖人称菠萝包4 天前
【Qt】《Qt 5.9 C++开发指南》笔记-Chapter9-Qt Charts
笔记·qt·qt5
扶尔魔ocy4 天前
【QT android】环境安装及第一个QT项目
qt·andriod开发
江湖人称菠萝包4 天前
【Qt】《Qt 5.9 C++开发指南》笔记-Chapter10-Data Visualization
笔记·qt·qt5
Cx330❀4 天前
Qt 常用控件属性与底层机制详解:从窗口半透明、浮点数陷阱到 QSS 与焦点策略
qt·ui·图形渲染
Quz4 天前
QML DelegateChooser:多条件组合与按列选择委托
qt
Quz4 天前
QML DelegateChooser:按角色选择委托与按索引选择委托
qt