Say /a/
    9 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Farideh Jalali
 am 18 Jun. 2012
  
    
    
    
    
    Kommentiert: the cyclist
      
      
 am 2 Apr. 2014
            how can I write a program in matlab to say /a/?
3 Kommentare
Akzeptierte Antwort
  Wayne King
    
      
 am 18 Jun. 2012
        On a PC
    textIn = 'ah';
    ha = actxserver('SAPI.SpVoice');
    invoke(ha,'speak',textIn);
2 Kommentare
Weitere Antworten (1)
  the cyclist
      
      
 am 18 Jun. 2012
        If you are on a Mac, you can take advantage of the command line "say" command, via the MATLAB system() function:
>> system('say anything')
>> system('say a')
If you are on a PC, you might be able to use one of the solutions mentioned in this old blog post:
2 Kommentare
  william
 am 2 Apr. 2014
				hi, I was wondering if there is any way of modifying the default voice from MATLAB? system('say "你好"') for reading Chinese, doesn't work out
or by default, can be reader from a variable? something like chinese={"你好"}
system('say , chinese')
Thank you in advance
  the cyclist
      
      
 am 2 Apr. 2014
				I would ask a new question, rather than burying it as a comment in a two-year-old question that almost no one will see.
Siehe auch
Kategorien
				Mehr zu Speech Recognition finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






