2013-12-19 16:15:11 +00:00
|
|
|
import json
|
2013-11-19 02:51:27 +00:00
|
|
|
|
2015-03-28 23:23:18 +00:00
|
|
|
from dejavu import Dejavu
|
2019-09-25 20:38:25 +00:00
|
|
|
from dejavu.logic.recognizer.microphone_recognizer import MicrophoneRecognizer
|
|
|
|
from dejavu.logic.recognizer.file_recognizer import FileRecognizer
|
2019-09-18 15:39:59 +00:00
|
|
|
|
2013-12-19 16:15:11 +00:00
|
|
|
# load config from a JSON file (or anything outputting a python dictionary)
|
2014-07-03 05:01:56 +00:00
|
|
|
with open("dejavu.cnf.SAMPLE") as f:
|
2013-12-19 16:15:11 +00:00
|
|
|
config = json.load(f)
|
2015-03-28 23:23:18 +00:00
|
|
|
|
2015-03-22 22:50:42 +00:00
|
|
|
if __name__ == '__main__':
|
2013-11-19 02:51:27 +00:00
|
|
|
|
2019-09-18 15:39:59 +00:00
|
|
|
# create a Dejavu instance
|
|
|
|
djv = Dejavu(config)
|
2014-07-03 05:01:56 +00:00
|
|
|
|
2019-09-18 15:39:59 +00:00
|
|
|
# Fingerprint all the mp3's in the directory we give it
|
2019-09-25 20:38:25 +00:00
|
|
|
djv.fingerprint_directory("test", [".wav"])
|
2013-11-19 02:51:27 +00:00
|
|
|
|
2019-09-18 15:39:59 +00:00
|
|
|
# Recognize audio from a file
|
2019-09-25 20:38:25 +00:00
|
|
|
song = djv.recognize(FileRecognizer, "mp3/Josh-Woodward--I-Want-To-Destroy-Something-Beautiful.mp3")
|
2019-09-18 15:39:59 +00:00
|
|
|
print(f"From file we recognized: {song}\n")
|
2013-11-19 02:51:27 +00:00
|
|
|
|
2019-09-18 15:39:59 +00:00
|
|
|
# Or recognize audio from your microphone for `secs` seconds
|
|
|
|
secs = 5
|
|
|
|
song = djv.recognize(MicrophoneRecognizer, seconds=secs)
|
|
|
|
if song is None:
|
|
|
|
print("Nothing recognized -- did you play the song out loud so your mic could hear it? :)")
|
|
|
|
else:
|
2019-09-25 20:38:25 +00:00
|
|
|
print(f"From mic with {secs} seconds we recognized: {song}\n")
|
2013-12-19 16:15:11 +00:00
|
|
|
|
2019-09-18 15:39:59 +00:00
|
|
|
# Or use a recognizer without the shortcut, in anyway you would like
|
|
|
|
recognizer = FileRecognizer(djv)
|
|
|
|
song = recognizer.recognize_file("mp3/Josh-Woodward--I-Want-To-Destroy-Something-Beautiful.mp3")
|
|
|
|
print(f"No shortcut, we recognized: {song}\n")
|