Echoprint系列--编译 1、官网 2、安装依赖环境 3、下载源代码 4、编译

近期要做一个音乐相关的client。当中一个功能是音乐识别。搜索了一些资料选择Echoprint来开发。Echoprint是开源免费的,并且多种client都支持能节约非常多时间,今天主要下载和编译源代码以及測试。

(备注:我的开发环境是Mac,所以以下以及之后都是Mac的环境)

官网地址:http://echoprint.me

2、安装依赖环境

  • 首先安装HomeBrew
  • 安装依赖库 

    brew install ffmpeg boost taglib

    安装的文件夹都在

    /usr/local/Cellar

3、下载源代码

git clone -b release-4.12 git://github.com/echonest/echoprint-codegen.git


下载完源代码后进入src并打开Makefile

adsl-172-10-1-12:~ zhangjie$ cd echoprint-codegen

adsl-172-10-1-12:echoprint-codegen zhangjie$ cd src/

adsl-172-10-1-12:src zhangjie$ vim Makefile 

改动当中变量BOOST_CFLAGS为你当前安装的boost文件夹

BOOST_CFLAGS=-I/usr/local/Cellar/boost/1.58.0/include

改动

 34 libcodegen: $(MODULES_LIB)

 35 ifeq ($(UNAME),Darwin)

 36         libtool -dynamic -flat_namespace -install_name libcodegen.$(VERSION).dylib -lSystem -compatibility_version $(VERSION_COMPAT)

 37                 -macosx_version_min 10.6 -current_version $(VERSION) -o libcodegen.$(VERSION).dylib -undefined suppress

 38             $(MODULES_LIB) -framework vecLib -framework Accelerate

 39 else

 40         $(CXX) -shared -fPIC -Wl,-soname,$(SONAME) -o $(LIBNAME).$(VERSION) $(MODULES_LIB) -lz

 41 endif

假设38行中有-framework vecLib则去掉

变为例如以下:

 34 libcodegen: $(MODULES_LIB)

 35 ifeq ($(UNAME),Darwin)

 36         libtool -dynamic -flat_namespace -install_name libcodegen.$(VERSION).dylib -lSystem -compatibility_version $(VERSION_COMPAT)

 37                 -macosx_version_min 10.6 -current_version $(VERSION) -o libcodegen.$(VERSION).dylib -undefined suppress

 38             $(MODULES_LIB)  -framework Accelerate

 39 else

 40         $(CXX) -shared -fPIC -Wl,-soname,$(SONAME) -o $(LIBNAME).$(VERSION) $(MODULES_LIB) -lz

 41 endif

4、编译

adsl-172-10-1-12:src zhangjie$ vim Makefile 

adsl-172-10-1-12:src zhangjie$ make

g++ -Wall -I/usr/local/Cellar/boost/1.58.0/include `taglib-config --cflags` -fPIC -O3 -DBOOST_UBLAS_NDEBUG -DNDEBUG -c -o Codegen.o Codegen.cxx

In file included from Codegen.cxx:12:

In file included from ./AudioBufferInput.h:14:

./AudioStreamInput.h:53:10: warning: 'StdinStreamInput::ProcessFile' hides overloaded virtual function [-Woverloaded-virtual]

    bool ProcessFile(const char* filename){ return ProcessStandardInput();}

         ^

./AudioStreamInput.h:26:18: note: hidden overloaded virtual function 'AudioStreamInput::ProcessFile' declared here: different number of parameters (3 vs 1)

    virtual bool ProcessFile(const char* filename, int offset_s=0, int seconds=0);

                 ^

1 warning generated.

g++ -Wall -I/usr/local/Cellar/boost/1.58.0/include `taglib-config --cflags` -fPIC -O3 -DBOOST_UBLAS_NDEBUG -DNDEBUG -c -o Fingerprint.o Fingerprint.cxx

g++ -Wall -I/usr/local/Cellar/boost/1.58.0/include `taglib-config --cflags` -fPIC -O3 -DBOOST_UBLAS_NDEBUG -DNDEBUG -c -o MatrixUtility.o MatrixUtility.cxx

g++ -Wall -I/usr/local/Cellar/boost/1.58.0/include `taglib-config --cflags` -fPIC -O3 -DBOOST_UBLAS_NDEBUG -DNDEBUG -c -o SubbandAnalysis.o SubbandAnalysis.cxx

In file included from SubbandAnalysis.cxx:8:

./AudioStreamInput.h:53:10: warning: 'StdinStreamInput::ProcessFile' hides overloaded virtual function [-Woverloaded-virtual]

    bool ProcessFile(const char* filename){ return ProcessStandardInput();}

         ^

./AudioStreamInput.h:26:18: note: hidden overloaded virtual function 'AudioStreamInput::ProcessFile' declared here: different number of parameters (3 vs 1)

    virtual bool ProcessFile(const char* filename, int offset_s=0, int seconds=0);

                 ^

1 warning generated.

g++ -Wall -I/usr/local/Cellar/boost/1.58.0/include `taglib-config --cflags` -fPIC -O3 -DBOOST_UBLAS_NDEBUG -DNDEBUG -c -o Whitening.o Whitening.cxx

相关阅读:
js 各种常用js验证
js url校验
最近遇到的技术问题
a标签的target的四个值
新系统用到的新知识
7 天打造前端性能监控系统
前端必读:浏览器内部工作原理
怎么判断ThreadPool线程池里的任务都执行完毕
docker 在window 10 专业版的安装 && .net core 在docker的部署
.net core 中后台获取前台 数据(post)的方法

  • 原文地址:https://www.cnblogs.com/lxjshuju/p/6790006.html