├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── add_syllable_and_word_tiers.praat ├── align_boundaries_in_two_interval_tiers.praat ├── align_conversation_transcript_with_sound.praat ├── audio2textGrid.sh ├── browse_sounds_and_textgrids.praat ├── calculate_segment_durations.praat ├── change_sample_rate_in_folder.praat ├── change_sample_rate_of_sound_files.praat ├── collect_data_from_two_tiers_in_files.praat ├── collect_formant_data_from_files.praat ├── collect_pitch_data_from_files.praat ├── convert_SoundForge_to_Praat_TextGrid.praat ├── convert_aiff_files_to_16kHz_wav.praat ├── draw_LPC_spectrum_from_selection.praat ├── draw_distribution_bar_from_data_file.praat ├── draw_f0_curves_from_files.praat ├── draw_formant_chart.praat ├── draw_formant_point_to_Bark_chart.praat ├── draw_formant_point_to_ERB_chart.praat ├── draw_histogram_from_numeric_data_file.praat ├── draw_pitch_histogram_from_sound.praat ├── draw_spectrum_from_selection.praat ├── extract_column_from_tab_separated_text_file.praat ├── f0_statistics_from_longsound.praat ├── fade_out_the_end_of_sound_file.praat ├── flatten_recursive_dir.sh ├── get.5spectral.peak.all.intervals.v14.praat ├── index.js ├── ipa_worldbet_conversion.praat ├── label_from_text_file.praat ├── label_quickly_from_text_file.praat ├── make_textgrid_from_segment_data.praat ├── make_textgrid_from_segment_data_endpoints.praat ├── mark_pauses.praat ├── mark_pauses_in_several_longsounds.praat ├── open_all_files_in_folder.praat ├── open_all_files_of_type_in_folder.praat ├── package.json ├── paint-all.praat ├── pick_lines_from_tab_separated_text_file.praat ├── play_vowels_draw_formant_chart.praat ├── praat-script-extract-utterances.praat ├── praat-script-syllable-nuclei-v2dir.praat ├── praat-script-syllable-nuclei-v2file.praat ├── prapic_to_eps.praat ├── remove_all_objects.praat ├── replace_part_of_textgrid.praat ├── save_Finnish_tier_to_phoneme_string.praat ├── save_conversation_tiers_as_text_file.praat ├── save_interval_data_to_text_file.praat ├── save_intervals_to_aiff_sound_files.praat ├── save_intervals_to_wav_sound_files.praat ├── save_labeled_intervals_to_aiff_sound_files.praat ├── save_labeled_intervals_to_wav_sound_files.praat ├── save_phonetic_transcription_example.praat ├── save_selection_to_sound_and_textgrid.praat ├── save_tier_text_to_file.praat ├── separate_channels_from_stereo_to_mono.praat ├── tests └── praat-scripts-spec.js ├── tokenize_tiers_in_TextGrid.praat ├── total_duration_of_labeled_segments.praat └── view_praat_pictures_in_directory.praat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /add_syllable_and_word_tiers.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/add_syllable_and_word_tiers.praat -------------------------------------------------------------------------------- /align_boundaries_in_two_interval_tiers.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/align_boundaries_in_two_interval_tiers.praat -------------------------------------------------------------------------------- /align_conversation_transcript_with_sound.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/align_conversation_transcript_with_sound.praat -------------------------------------------------------------------------------- /audio2textGrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/audio2textGrid.sh -------------------------------------------------------------------------------- /browse_sounds_and_textgrids.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/browse_sounds_and_textgrids.praat -------------------------------------------------------------------------------- /calculate_segment_durations.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/calculate_segment_durations.praat -------------------------------------------------------------------------------- /change_sample_rate_in_folder.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/change_sample_rate_in_folder.praat -------------------------------------------------------------------------------- /change_sample_rate_of_sound_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/change_sample_rate_of_sound_files.praat -------------------------------------------------------------------------------- /collect_data_from_two_tiers_in_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/collect_data_from_two_tiers_in_files.praat -------------------------------------------------------------------------------- /collect_formant_data_from_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/collect_formant_data_from_files.praat -------------------------------------------------------------------------------- /collect_pitch_data_from_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/collect_pitch_data_from_files.praat -------------------------------------------------------------------------------- /convert_SoundForge_to_Praat_TextGrid.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/convert_SoundForge_to_Praat_TextGrid.praat -------------------------------------------------------------------------------- /convert_aiff_files_to_16kHz_wav.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/convert_aiff_files_to_16kHz_wav.praat -------------------------------------------------------------------------------- /draw_LPC_spectrum_from_selection.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_LPC_spectrum_from_selection.praat -------------------------------------------------------------------------------- /draw_distribution_bar_from_data_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_distribution_bar_from_data_file.praat -------------------------------------------------------------------------------- /draw_f0_curves_from_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_f0_curves_from_files.praat -------------------------------------------------------------------------------- /draw_formant_chart.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_formant_chart.praat -------------------------------------------------------------------------------- /draw_formant_point_to_Bark_chart.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_formant_point_to_Bark_chart.praat -------------------------------------------------------------------------------- /draw_formant_point_to_ERB_chart.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_formant_point_to_ERB_chart.praat -------------------------------------------------------------------------------- /draw_histogram_from_numeric_data_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_histogram_from_numeric_data_file.praat -------------------------------------------------------------------------------- /draw_pitch_histogram_from_sound.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_pitch_histogram_from_sound.praat -------------------------------------------------------------------------------- /draw_spectrum_from_selection.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/draw_spectrum_from_selection.praat -------------------------------------------------------------------------------- /extract_column_from_tab_separated_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/extract_column_from_tab_separated_text_file.praat -------------------------------------------------------------------------------- /f0_statistics_from_longsound.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/f0_statistics_from_longsound.praat -------------------------------------------------------------------------------- /fade_out_the_end_of_sound_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/fade_out_the_end_of_sound_file.praat -------------------------------------------------------------------------------- /flatten_recursive_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/flatten_recursive_dir.sh -------------------------------------------------------------------------------- /get.5spectral.peak.all.intervals.v14.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/get.5spectral.peak.all.intervals.v14.praat -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/index.js -------------------------------------------------------------------------------- /ipa_worldbet_conversion.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/ipa_worldbet_conversion.praat -------------------------------------------------------------------------------- /label_from_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/label_from_text_file.praat -------------------------------------------------------------------------------- /label_quickly_from_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/label_quickly_from_text_file.praat -------------------------------------------------------------------------------- /make_textgrid_from_segment_data.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/make_textgrid_from_segment_data.praat -------------------------------------------------------------------------------- /make_textgrid_from_segment_data_endpoints.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/make_textgrid_from_segment_data_endpoints.praat -------------------------------------------------------------------------------- /mark_pauses.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/mark_pauses.praat -------------------------------------------------------------------------------- /mark_pauses_in_several_longsounds.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/mark_pauses_in_several_longsounds.praat -------------------------------------------------------------------------------- /open_all_files_in_folder.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/open_all_files_in_folder.praat -------------------------------------------------------------------------------- /open_all_files_of_type_in_folder.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/open_all_files_of_type_in_folder.praat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/package.json -------------------------------------------------------------------------------- /paint-all.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/paint-all.praat -------------------------------------------------------------------------------- /pick_lines_from_tab_separated_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/pick_lines_from_tab_separated_text_file.praat -------------------------------------------------------------------------------- /play_vowels_draw_formant_chart.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/play_vowels_draw_formant_chart.praat -------------------------------------------------------------------------------- /praat-script-extract-utterances.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/praat-script-extract-utterances.praat -------------------------------------------------------------------------------- /praat-script-syllable-nuclei-v2dir.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/praat-script-syllable-nuclei-v2dir.praat -------------------------------------------------------------------------------- /praat-script-syllable-nuclei-v2file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/praat-script-syllable-nuclei-v2file.praat -------------------------------------------------------------------------------- /prapic_to_eps.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/prapic_to_eps.praat -------------------------------------------------------------------------------- /remove_all_objects.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/remove_all_objects.praat -------------------------------------------------------------------------------- /replace_part_of_textgrid.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/replace_part_of_textgrid.praat -------------------------------------------------------------------------------- /save_Finnish_tier_to_phoneme_string.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_Finnish_tier_to_phoneme_string.praat -------------------------------------------------------------------------------- /save_conversation_tiers_as_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_conversation_tiers_as_text_file.praat -------------------------------------------------------------------------------- /save_interval_data_to_text_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_interval_data_to_text_file.praat -------------------------------------------------------------------------------- /save_intervals_to_aiff_sound_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_intervals_to_aiff_sound_files.praat -------------------------------------------------------------------------------- /save_intervals_to_wav_sound_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_intervals_to_wav_sound_files.praat -------------------------------------------------------------------------------- /save_labeled_intervals_to_aiff_sound_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_labeled_intervals_to_aiff_sound_files.praat -------------------------------------------------------------------------------- /save_labeled_intervals_to_wav_sound_files.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_labeled_intervals_to_wav_sound_files.praat -------------------------------------------------------------------------------- /save_phonetic_transcription_example.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_phonetic_transcription_example.praat -------------------------------------------------------------------------------- /save_selection_to_sound_and_textgrid.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_selection_to_sound_and_textgrid.praat -------------------------------------------------------------------------------- /save_tier_text_to_file.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/save_tier_text_to_file.praat -------------------------------------------------------------------------------- /separate_channels_from_stereo_to_mono.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/separate_channels_from_stereo_to_mono.praat -------------------------------------------------------------------------------- /tests/praat-scripts-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/tests/praat-scripts-spec.js -------------------------------------------------------------------------------- /tokenize_tiers_in_TextGrid.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/tokenize_tiers_in_TextGrid.praat -------------------------------------------------------------------------------- /total_duration_of_labeled_segments.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/total_duration_of_labeled_segments.praat -------------------------------------------------------------------------------- /view_praat_pictures_in_directory.praat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FieldDB/Praat-Scripts/HEAD/view_praat_pictures_in_directory.praat --------------------------------------------------------------------------------