Yes i have download these files but it seems that i need more help to get output ani more help please..
speech to text
16 ビュー (過去 30 日間)
表示 古いコメント
I am doing a project on the speech recognition for home automation but i can not find the code to convert the speech into the text and also i can not justify that what is spoken in the speech? so please any one can help me?
I have some code to distinguish the speech but it does not work for different speeches.
If you have that code then please send me .
My email id :dhavalgondaliya55@gmail.com.
3 件のコメント
Adam Danz
2019 年 12 月 13 日
Several comments have been removed where users were merely leaving their personal email addresses asking for code.
採用された回答
Image Analyst
2012 年 3 月 20 日
Did you try a web search? I did and found links like these:
etc.
3 件のコメント
Walter Roberson
2013 年 1 月 23 日
The company sells the source code for about Eur 30.
I would not think it especially likely that Image Analyst has paid the company for the source to a speech project... not his line of work.
その他の回答 (3 件)
Gabriele Bunkheila
2018 年 1 月 16 日
編集済み: Gabriele Bunkheila
2018 年 3 月 6 日
Hi Dhaval,
I work at MathWorks and I noticed this old enquiry of yours just now. This is probably not directly relevant to your original question, but I thought I'd leave a link to our recent MATLAB Central sumbission speech2text in case it was useful to others:
That leverages 3rd party speech-to-text web services (so far including from Google, Microsoft and IBM) calling their web API directly from MATLAB via a simple MATLAB Function. This may turn in handy to test the performance of your own solution using well-established services.
The syntax looks like the following:
>> [samples, fs] = audioread('helloaudioPD.wav');
>> soundsc(samples, fs)
>> speechObject = speechClient('Google','languageCode','en-US');
>> outInfo = speech2text(speechObject, samples, fs);
>> outInfo.TRANSCRIPT
ans =
'hello audio product Developers'
>> outInfo.CONFIDENCE
ans =
0.9385
Please refer to the html folder in the submission for a step-by-step getting started guide.
Thanks,
Gabriele.
3 件のコメント
Henan Yu
2019 年 10 月 6 日
Hello Gabriele,
I am doing the Speech recognition project, and I followed the link you shared, but it turns out this error: 'unauthorized' voice. Here is my code:
[y,fs] = audioread('audio-file.flac');
soundsc(y, fs)
speechObject = speechClient('IBM','languageCode','en-US')
speechObjectIBM = speechClient('IBM','keywords',"example,keywords",'keywords_threshold',0.5);
speechObjectIBM.Options
outInfo = speech2text(speechObject,y,fs)
I am wondering is this because the code is not correct or there is something wrong with my .JSON file ?
Looking forward to hearing from you.
Thank you
Regards,
Henan
mani kandan
2016 年 3 月 1 日
編集済み: Adam Danz
2019 年 12 月 13 日
Sir i am manikandan i have project in matlab speech to text.. plz send speech to text matlab code or how to get speech to text matlab code.... this is my mail is [REMOVED]
1 件のコメント
siva polagani
2018 年 3 月 3 日
I'm also doing same project speech to text. if anyone has the code please help me.
my mail id is:- [REMOVED]
(or)
ping me in Whatsapp:- [REMOVED]
zahoor mosad
2019 年 6 月 23 日
編集済み: Adam Danz
2019 年 12 月 13 日
please send me the code to my gmail( [REMOVED]) It will be great help for my thesis. I'm never forget your kindness.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!