.pro 加上 multimedia

image

 

.cpp

播放音樂

1
2
3
4
5
6
7
#include <QtMultimedia/qmediaplayer>

QMediaPlayer *player = new QMediaPlayer;

player->setMedia(QUrl::fromLocalFile("D:/Qt/project/music_play/song/JC - 說散就散 Lyrics Video.mp3"));

player->play();

 

播放音樂後的動作

1
2
3
4
5
6
7
 player->play(); //播放
    
player->pause(); //暫停
    
player->stop(); //停止
    
player->setPosition(15000); //快轉 以毫秒計算 15秒就是 15000

 

歌曲以毫秒計算,一首3分38秒的歌就有218*1000。

 

 

 

 

 

 

 

 

 

創作者介紹
創作者 讀書小天地 的頭像
讀書小天地

書籍分享天地

讀書小天地 發表在 痞客邦 留言(0) 人氣()