... again, the Sound is called " "Sound woscreamCT", not "Sound woscreamCT.wav", as I wrote before. Do soundName$ = fileName$ - ".wav" or so, or use objects...
5986
Shanker V
vshanker
Jun 28, 2012 4:04 am
Dear Paul, Thank you for your patience and kind feedback. I have created the following two scripts to calculate the mean pitch and HNR. It is working fine,...
5987
tamsa
tamsa_1
Jun 28, 2012 4:06 am
thanks! Cheers! tamsa ... -- Ph.D. Department of Ethology Eotvos Lorand University Budapest Pazmany P. s. 1/c H-1117 Hungary Tel: 00 36 1 381 21 79 Fax: 00 36...
5988
pb050667
Jun 28, 2012 4:15 am
Dear Praat-users, I would like to use music symbols (treble and bass clefs, sharp & flat, etc.) in a Praat picture, but I did not find anything like that in...
5989
Reza Falahati
rfalahati
Jun 28, 2012 4:15 am
Hi All, I was using TextGrid Editor but lost the bottom tool bar which gives us the chance to work on the TextGrid, the toolbar which has "all, in, out,...
5990
Paul Boersma
paulboersma
Jun 28, 2012 9:41 am
... draw the window wider, so that all the menu titles appear on the same line at the top. Then close and reopen the window. _____ Paul Boersma University of...
5991
Paul Boersma
paulboersma
Jun 28, 2012 9:46 am
... you can insert them with any Unicode input method. On the Mac, for instance, you use the Keyboard menu, which you can put in the menu bar with the help of...
5992
Paul Boersma
paulboersma
Jun 28, 2012 6:12 pm
dear Shanker, ... So you want to force Praat to give you an F0 value, even if the sound is voiceless? Yes, you can do that. You can do pitch1 = To Pitch...
5993
moorecd_lakeland
moorecd_lake...
Jun 30, 2012 5:25 am
Hello, I wanted to post this here before it was shut down. This is a manual I wrote with the help of one of my research assistants a few years ago. Perhaps it...
5994
chengafni
Jul 1, 2012 11:05 am
Hello, I have written a script for vowel synthesis. At the beginning it calls up a table that includes a list of vowels with their formants. Each vowel has a...
5995
Paul Boersma
paulboersma
Jul 1, 2012 8:41 pm
... you are using "form" and "endform". Those are for retrieving the "arguments" to the script, just as all normal Praat commands present a form at the...
5996
negin
neginmoradist
Jul 2, 2012 4:30 am
Hi All, To perform LTAS, I need a script which can be used for deletion of unvoiced sounds and pouses. Would you please send me if you have it? Thank you Best,...
5997
Plinio Barbosa
plinius326
Jul 3, 2012 12:40 pm
Dear Praat users, Hi! I'd like to know if there is equivalence in the way of computing band energy difference. The way Praat computed band energy difference...
5998
Eric Schmiedl
eric@...
Jul 4, 2012 7:12 pm
Hi all, I have a large sound. I want to mark all areas that have high frequency content (peaks above n Hz). I want to then jump through those marked areas...
5999
Paul Boersma
paulboersma
Jul 4, 2012 9:20 pm
... Look up "annotation" in the Intro (under Help). You can create a TextGrid in which you can mark intervals; the TextGrid can be saved for later use, and...
6000
Paul Boersma
paulboersma
Jul 4, 2012 9:33 pm
... this gives you the energy difference only if the "mean intensity" was computed by averaging over values in pascal-squared, not averaged over dB values. For...
6001
Katalin Mady
uborrr
Jul 5, 2012 5:20 pm
Dear all, I apologise for this posting, since it is probably not a specifically Praat-related problem. I have upgraded my OS to Ubuntu 12.04 gnome. When using...
6002
Paul Boersma
paulboersma
Jul 5, 2012 9:24 pm
... yes, different versions of operating systems and/or widget sets may have different opinions on what is easiest to work with for users (the Mac is notorious...
6003
Eric Schmiedl
eric@...
Jul 6, 2012 4:12 am
... What I meant is, is it possible to mark those areas automatically? (The file in question might have hundreds of areas of potential interest.) [Non-text...
6004
Julian Bradfield
jcbradfield
Jul 6, 2012 11:36 am
... I'm afraid this looks like a deliberately introduced misfeature of recent GTK+ releases. I haven't had to deal with it yet - I'm not sure there will be an...
Maybe using To TextGrid (silences)... with a sufficiently high Minimum pitch (Hz) value? You'd have to test it to see if it works for you, but it might work if...
6006
levarishiri
Jul 9, 2012 9:52 am
Hello,I've been trying to synthesize diphthongs using a formant grid and a source, but encountered an unexpected problem. My goal is at the end to create a...
6007
Paul Boersma
paulboersma
Jul 9, 2012 1:19 pm
... That is not the simplest patch. It involves adding the following code, which you can only think up if you know Praat-internal platform-independent file...
6008
Paul Boersma
paulboersma
Jul 9, 2012 1:25 pm
... "minimum pitch" is not a filter; it just determines the smoothness of the intensity contour on which the silence detection is based. To filter some...
6009
M. Ehsan Hoque
bulbul20
Jul 12, 2012 1:33 am
What would be the eqauivalent of spectral stationarity (how stationary, i.e. boring is the speech) in praat? Would it be equivalent to Spectrum: Get standard...
6010
Eric Schmiedl
eric@...
Jul 12, 2012 6:53 am
Thanks, that sounds ideal. However, the high-frequency content is quite broadband. There's also interference present with similar but different (usually less)...
6011
Earl Brown
eakjbrown
Jul 12, 2012 6:54 am
Hello Praat users. In other scripting languages I can put an "if" clause in a "for" loop so that if the "if" condition evaluates to true the "for" loop jumps...
As far as I know, there is none. But moving around a few lines from the script you wrote you can get the same behaviour: # WHAT I DO WHEN I HAVE TO DO THIS for...
6013
dan_mccloy
Jul 13, 2012 10:56 am
Try this: for i from 1 to num_intervals name_interval$ = Get label of interval... 1 i if name_interval$ <> "" # DO SOME STUFF endif endfor by making the if...
6014
Daniel Hirst
daniel_hirst
Jul 13, 2012 11:09 am
... in other words, if the condition is fulfilled then the script will do nothing that iteration and move to the next one - the BUNCH OF CODE will only be...