Home > Enterprise >  Making a music player in QT
Making a music player in QT

Time:12-21

I'm still very new to QT and coding. I want to make a simple music player application. I designed an interface in general but I have no idea what to do to get the music playing. Can you give me information about this ?

How to run audio files in music player build with QT?

CodePudding user response:

You can use the 'QMediaPlayer' class on QT to do this. This class is a class where various operations such as playing music files, adjusting the volume are performed.

You can access more detailed information and code examples from the documentation created for the QMediaPlayer class.

  •  Tags:  
  • qt
  • Related