项目作者: otgaard

项目描述 :
A cross-platform WAVE & MP3 library and audio stream toolkit based on portaudio & LAME
高级语言: C++
项目地址: git://github.com/otgaard/zapAudio.git
创建时间: 2016-01-12T13:34:27Z
项目社区:https://github.com/otgaard/zapAudio

开源协议:MIT License

下载


zapAudio

A set of C++ classes for working with the libmp3lame and portaudio libraries.

Example player at bin/simple_mp3

Build Instructions

(portaudio & LAME installed in third_party directory)

Build portaudio

cd portaudio

mkdir build_

cd build_

cmake .. -DCMAKE_INSTALL_PREFIX:PATH=${SIMPLE_MP3_SOURCE_PATH}/third_party && make all install

Build LAME

cd lame

./configure —prefix=${SIMPLE_MP3_SOURCE_PATH}/third_party/ && make all install

Building zapAudio

mkdir build

cd build

cmake .. -DCMAKE_INSTALL_PREFIX:PATH=${INSTALLATION_PATH} && make install