如何使用Python和Gracenote识别音乐样本?

时间:2016-06-28 11:56:13

标签: python audio gracenote

我最近发现GNSDK(Gracenote SDK)似乎提供了几种编程语言中的示例,通过指纹识别来识别音乐样本,然后请求他们的音频数据库获取相应的艺术家和歌曲标题。< / p>

但文档太可怕了。

我如何使用Python和GNSDK执行音频样本文件的识别?提供的文档中没有任何示例或教程。

编辑:我真的想在Python中使用GNSDK。不要发布任何不相关的内容,你会浪费你的时间。

3 个答案:

答案 0 :(得分:3)

关键词是:节拍频谱分析和节奏检测。

这是一个众所周知的Python库,可以包含您的问题的解决方案: https://github.com/aubio/aubio

另外,我建议您查看此页面以了解其他库: https://wiki.python.org/moin/PythonInMusic

最后这个项目更加Python友好的解决方案和简单的启动方式: https://github.com/librosa/librosa

来自 Librosa 的示例,用于计算歌曲的速度(每分钟节拍数):

# Beat tracking example
from __future__ import print_function
import librosa

# 1. Get the file path to the included audio example
filename = librosa.util.example_audio_file()

# 2. Load the audio as a waveform `y`
#    Store the sampling rate as `sr`
y, sr = librosa.load(filename)

# 3. Run the default beat tracker
tempo, beat_frames = librosa.beat.beat_track(y=y, sr=sr)

print('Estimated tempo: {:.2f} beats per minute'.format(tempo))

# 4. Convert the frame indices of beat events into timestamps
beat_times = librosa.frames_to_time(beat_frames, sr=sr)

print('Saving output to beat_times.csv')
librosa.output.times_csv('beat_times.csv', beat_times)

但我不得不提到,这个领域在计算机科学领域是一个非常不成熟的领域,每一篇论文都会出现。因此,如果您也跟随学者们了解最近的发现,那将对您有所帮助。

<强>此外:

Gracenote官方文档中提到的Web API Wrappers: https://developer.gracenote.com/web-api#python

对于Python:

https://github.com/cweichen/pygn

但是你可以看到这个包装器没有很好的记录和不成熟。因此我建议你使用这个Ruby包装而不是Python;

对于Ruby:

https://github.com/JDiPierro/tmsapi

require 'tmsapi'

# Create Instace of the API
tms = TMSAPI::API.new :api_key => 'API_KEY_HERE'

# Get all movie showtimes for Austin Texas
movie_showings = tms.movies.theatres.showings({ :zip => "78701" })

# Print out the movie name, theatre name, and date/time of the showing.
movie_showings.each do |movie|
  movie.showtimes.each do |showing|
    puts "#{movie.title} is playing at '#{showing.theatre.name}' at #{showing.date_time}."
  end
end

# 12 Years a Slave is playing at 'Violet Crown Cinema' at 2013-12-23T12:45.
# A Christmas Story is playing at 'Alamo Drafthouse at the Ritz' at 2013-12-23T16:00.
# American Hustle is playing at 'Violet Crown Cinema' at 2013-12-23T11:00.
# American Hustle is playing at 'Violet Crown Cinema' at 2013-12-23T13:40.
# American Hustle is playing at 'Violet Crown Cinema' at 2013-12-23T16:20.
# American Hustle is playing at 'Violet Crown Cinema' at 2013-12-23T19:00.
# American Hustle is playing at 'Violet Crown Cinema' at 2013-12-23T21:40.

如果您对Ruby或Ruby on Rails不满意,那么唯一的选择就是开发自己的Python包装器。

答案 1 :(得分:3)

我最终使用了ACRCloud,效果非常好。似乎每个想要使用Gracenote的人都会因为原因而退回ACRCloud ......现在我知道原因了。

Python示例:

from acrcloud.recognizer import ACRCloudRecognizer

config = {
    'host': 'eu-west-1.api.acrcloud.com',
    'access_key': 'access key',
    'access_secret': 'secret key',
    'debug': True,
    'timeout': 10
}

acrcloud = ACRCloudRecognizer(config)

print(acrcloud.recognize_by_file('sample of a track.wav', 0))

答案 2 :(得分:1)

只是阅读标题问题,因为没有GNSDK的示例或教程,请尝试查看其他选项,
一个人:

<强> DEJAVU

  

用Python实现的音频指纹识别算法,   看到这里的解释:

     

Dejavu可以通过听一次和指纹识别来记忆音频   它。然后通过播放歌曲并录制麦克风输入,Dejavu   试图将音频与保存在指纹中的指纹相匹配   数据库,返回正在播放的歌曲。

https://github.com/worldveil/dejavu

似乎是正确的。