Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play .mp3 or other audio files in linux using C++ [duplicate]

Tags:

c++

linux

audio

Possible Duplicate:
Best audio playback api for C/C++ under Linux?

I am looking for a library with which i can play a audio file using C++ code in linux , any suggestions ?

Edit : Please include the links of some tutorials if it's possible .

like image 822
rajat Avatar asked Jan 16 '23 11:01

rajat


1 Answers

Take a look at FMOD. It is a cross-platform audio library for C++.

There are quite a few tutorials available, such as these:

  • Quick Guide to FMOD
  • FMOD Introduction
like image 65
Rivasa Avatar answered Jan 18 '23 00:01

Rivasa