class MainWindow public下
创建一个对象QSound *playmiusc;
接着
startButton触发 startSlot :palymiusc->play("beautiful This Earth.wav");
stopButton触发 stopSlot :playmiusc->stop("beautiful This Earth.wav");
这样做个简单的音频播放,为什么在点击stopButton的时候程序已经终止?
我认为是playmiusc这个对象 是需要初始化为("beautiful This Earth.wav");
像这样 QSound *playmiusc("beautiful This Earth.wav");
但是在类中不允许这样初始化!!
但是要怎么才能实现点击stop停止当前播放的音乐呢?!
编译环境Qt4.6.4
Phonon这个框架我不会用。。。
创建一个对象QSound *playmiusc;
接着
startButton触发 startSlot :palymiusc->play("beautiful This Earth.wav");
stopButton触发 stopSlot :playmiusc->stop("beautiful This Earth.wav");
这样做个简单的音频播放,为什么在点击stopButton的时候程序已经终止?
我认为是playmiusc这个对象 是需要初始化为("beautiful This Earth.wav");
像这样 QSound *playmiusc("beautiful This Earth.wav");
但是在类中不允许这样初始化!!
但是要怎么才能实现点击stop停止当前播放的音乐呢?!
编译环境Qt4.6.4
Phonon这个框架我不会用。。。