The afpfile
module both writes AFP features to file and reads audio fingerprinting files from file.
The afpfile module has three modes of operation.
Mode | Input | Output | Description |
---|---|---|---|
FINGERPRINT_READ
|
fp
|
The name of the AFP feature file to read from. | |
FINGERPRINT_WRITE
|
fp
|
The name of the AFP feature file to write to. | |
FINGERPRINT_WRITE
|
fp, w
|
The AFP feature file in which to write AFP features filtered by the word labels received from the w stream. |
Examples:
fp <- afpfile(FINGERPRINT_READ, fp)
output <- afpfile(FINGERPRINT_WRITE, fp)
output <- afpfile(FINGERPRINT_WRITE, fp, w)
|