itspoma / audio-fingerprint-identifying-python

The Shazam-similar app, that identify the song using audio fingerprints & spectrum analysis and Fast Fourier transform
MIT License
351 stars 164 forks source link

recognize-from-file.py #21

Open Alfnitacoder opened 3 years ago

Alfnitacoder commented 3 years ago

not working

original from libs.reader_microphone import FileReader

song = None seconds = 5

r = FileReader(123) r.recognize(seconds=seconds)

print(song)

is going to be ?????

from libs.reader_file import FileReader

song = None seconds = 5

r = FileReader(123)

r.recognize(s=5)

print(song)

chrowe commented 3 years ago

Seems like this is the same issue as #2 ?