Re: mp3 playing library for C++
- From: Jan Panteltje <pNaonStpealmtje@xxxxxxxxx>
- Date: Sat, 23 Sep 2006 21:51:06 GMT
On a sunny day (23 Sep 2006 14:25:52 -0700) it happened bluesmanu@xxxxxxxxx
wrote in <1159046752.802399.159430@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>:
Hey there,
I want to develop a C++ mp3 player. What is the most commonly
used/standard library to play mp3?
Thanks
char *path_filename;
FILE * pptr;
char temp[1024];
sprintf(temp, "mpg123 %s", path_filename);
pptr = open(temp, "w");
pclose(pptr);
You can use sox too if not mpg123.
sox will play most other audio formats too.
.
- Follow-Ups:
- Re: mp3 playing library for C++
- From: jasen
- Re: mp3 playing library for C++
- References:
- mp3 playing library for C++
- From: bluesmanu
- mp3 playing library for C++
- Prev by Date: mp3 playing library for C++
- Next by Date: Re: why bash not send SIGHUP to its child when it exits
- Previous by thread: mp3 playing library for C++
- Next by thread: Re: mp3 playing library for C++
- Index(es):
Relevant Pages
|