user2503881
user2503881

Reputation: 143

No speaker found while training speaker identification with MARF

I'm getting an error while training using wav file

~/SpeakerIdentApp-bin-0.3.0-devel-20060226$ java -jar SpeakerIdentApp.jar --single-train testing-samples/1.wav
No speaker found for "testing-samples/1.wav" for training.
Done training with file "testing-samples/1.wav".

Can someone shed some light over the issue.

Upvotes: 1

Views: 529

Answers (1)

Bhoot
Bhoot

Reputation: 2633

MARF training requires the names of the speakers to be present in 'speakers.txt' file which must be located in the root folder. In this file, you are required to enter all the speakers along with the filenames of their voice samples over which you want to train MARF. The format for 'speakers.txt' file is as follows:

SpeakerID, SpeakerName, Filename_1 | Filename_2 | ... | Filename_n

You can go through the website http://marf.sourceforge.net for documentation and download the speaker identification application along with the training data to get better insight on how to get it working.

I hope you find this useful.

Upvotes: 1

Related Questions