Blame doc/doxy_examples.c

Packit c32a2d
/** \defgroup mpg123_examples example programs using libmpg123 and libout123
Packit c32a2d
	@{ */
Packit c32a2d
Packit c32a2d
/** \file mpg123_to_out123.c A simple MPEG audio to WAV converter using libmpg123 (read) and libout123 (write).
Packit c32a2d
    ...an excersize on two simple APIs. */
Packit c32a2d
Packit c32a2d
/** \file mpglib.c Example program mimicking the old mpglib test program.
Packit c32a2d
	It takes an MPEG bitstream from standard input and writes raw audio to standard output.
Packit c32a2d
	This is an use case of the mpg123_decode() in and out function in the feeder mode, quite close to classic mpglib usage and thus a template to convert from that to libmpg123.
Packit c32a2d
*/
Packit c32a2d
Packit c32a2d
/** \file scan.c Example program that examines the exact length of an MPEG file.
Packit c32a2d
    It opens a list of files and does mpg123_scan() on each and reporting the mpg123_length() before and after that. */
Packit c32a2d
Packit c32a2d
/** \file id3dump.c Parse ID3 info and print to standard output. */
Packit c32a2d
Packit c32a2d
/** \file extract_frames.c Parse stream and extract only the valid MPEG frames to standard output. */
Packit c32a2d
Packit c32a2d
/** \file feedseek.c Fuzzy feeder seeking. */
Packit c32a2d
Packit c32a2d
/* @} */