Home » Questions » Computers [ Ask a new question ]

How to play a PCM file on an UNIX system?

How to play a PCM file on an UNIX system?

I'm trying to figure out how to use libmad with C. The trouble is, libmad converts audio files to .pcm files and I'm unable to find a way to play these files. There is no straightforward .pcm player, and Audacity crashes every time I try to open the pcm file with it. Does any one have any experience with this? I'm open to converting these pcm files to wav files or some other format, but again there's no straightforward way to do this (at least I haven't found one).

Asked by: Guest | Views: 399
Total answers/comments: 2
bert [Entry]

"Are you sure you're getting valid PCM data? What type of PCM are you getting?

Basic PCM is used on audio CDs and in WAV files ripped from CDs; it should be playable by just about anything. Specifically, it is 16-bit (per sample), 44.1 kHz (sample rate), stereo (2 channels). Playing this kind of PCM is as simple as cat file.pcm > /dev/audio (or /dev/dsp or another appropriate audio device).

The libmad homepage indicates that libmad may default to outputting 24-bit PCM, and your player software could be confused by it if expecting the standard 16-bit PCM. If you haven't already, check your program's libmad usage against the madlld (libmad low-level API tutorial) to make sure you're getting the correct output from the library.

Since PCM data doesn't include headers like a WAV file does, you may need to specify the PCM format for a program to load the file correctly. Audacity should be able to handle any standard PCM format.

It's also possible you're getting invalid PCM output from libmad, due to a bug in the library or due to improper use of the library by your code."
bert [Entry]

"Perhaps you can use a tool like Sox

SoX is a cross-platform (Windows,
Linux, MacOS X, etc.) command line
utility that can convert various
formats of computer audio files in to
other formats. It can also apply
various effects to these sound files,
and, as an added bonus, SoX can play
and record audio files on most
platforms."