0

我有以下问题:我想低通过滤 240 WAV 文件。该脚本仅在创建低通滤波声音并显示在对象列表(“..._band”)中之前运行。但是,Praat 不会将它们导出为 WAV 文件。选择输出文件夹后,我收到警告消息“命令'获取字符串数'不适用于当前选择”。

简而言之,我的问题是如何将 WAV 声音及其新文件名单独保存在对象列表中?另请参阅屏幕截图

脚本见下文。

非常感谢您的帮助!

问候,

#determine praat version
ver1$ = left$(praatVersion$, (rindex(praatVersion$, ".")-1));
ver1 = 'ver1$'
if ver1 < 5.2
    exit Please download a more recent version of Praat
endif

if ver1 == 5.2
    ver2$ = right$(praatVersion$, length(praatVersion$) - (rindex(praatVersion$, ".")));
    ver2 = 'ver2$'
    if ver2 < 4
        exit Please download a more recent version of Praat (minor)
    endif
endif

beginPause ("Low-Pass Filter Instructions")
    comment ("1. Select a folder containing the wave files to be low-pass filtered")
    comment ("2. Wave files will be low-pass filtered (0 - 400 Hz)")
    comment ("3. Select an output folder for the low-pass filtered wave files to be saved to")
    comment ("Click 'Next' to begin")
clicked = endPause("Next", 1);

#wavefile folder path
sourceDir$ = chooseDirectory$ ("Select folder containing wave files")
if sourceDir$ == ""
    exit Script exited. You did not select a folder.
else
    sourceDir$ = sourceDir$ + "/";
endif

Create Strings as file list... list 'sourceDir$'/*.wav

numberOfFiles = Get number of strings
levels$ = ""
for ifile to numberOfFiles
    select Strings list
    currentList = selected ("Strings")
    filename$ = Get string... ifile
    Read from file... 'sourceDir$'/'filename$'
    currentSound = selected ("Sound")
    filterFreqRange = Filter (pass Hann band)... 0 400 20

    select currentSound
    Remove

endfor

select currentList
Remove

#output folder path  - where the wave files get saved
outputDir$ = chooseDirectory$ ("Select folder to save wave files")
if outputDir$ == ""
    exit Script exited. You did not select a folder.
else
    outputDir$ = outputDir$ + "/";
endif

numberOfFiles = Get number of strings
for ifile to numberOfFiles
    select Strings list
    currentList = selected ("Strings")
    filename$ = Get string... ifile
    currentSound = selected ("Sound")
    endif
    Save as WAV file... 'outputDir$'/'filename$'
    select currentSound
    Remove
endfor

#clean up
select currentList
Remove

#clear the info window
clearinfo
#print success message
printline Successfully low-pass filtered 'numberOfFiles' wave files.
4

1 回答 1

1

乍一看,该命令不可用,因为当您到达脚本中的那个点时,选择是空的。它是空的,因为在第一个循环结束时,您选择Strings对象,然后选择Remove它。

更一般地说,您的脚本没有正确处理对象选择,这在 Praat 中是一个大问题,因为可用命令会根据活动选择而变化。

因此,即使您删除Remove列表所在的行,您在第二次运行时也会遇到问题,Get number of strings因为到那时您已经更改了选择。即使您删除了该行(您实际上并不需要),在选择对象后运行时仍然会遇到问题,因为到那时您将没有任何选定的对象(您没有无论如何,他们之前)。selected("Sound")StringsSound

脚本的一个更惯用的版本,它也运行在一个循环中,一个一个地读取、过滤和删除声音(这也更节省内存)看起来像这样:

form Low-Pass Filter...
    real From_frequency_(Hz) 0
    real To_frequency_(Hz) 400
    real Smoothing_(Hz) 20
    comment Leave paths empty for GUI selectors
    sentence Source_dir 
    sentence Output_dir 
endform

if praatVersion < 5204
  exitScript: "Please download a more recent version of Praat"
endif

if source_dir$ == ""
    source_dir$ = chooseDirectory$("Select folder containing wave files")
    if source_dir$ == ""
        exit
    endif
endif

if output_dir$ == ""
    output_dir$ = chooseDirectory$("Select folder to save filtered files")
    if output_dir$ == ""
        exit
    endif
endif

list = Create Strings as file list: "list", source_dir$ + "/*.wav"
numberOfFiles = Get number of strings
levels$ = ""

for i to numberOfFiles
    selectObject: list
    filename$ = Get string: i
    sound = Read from file: source_dir$ + "/" + filename$
    filtered = Filter (pass Hann band): from_frequency, to_frequency, smoothing

    Save as WAV file: output_dir$ + "/" + selected$("Sound")
    removeObject: sound, filtered
endfor

尽管您可能有兴趣知道这一点,但如果您不需要自动读取和保存文件(即,如果您可以让脚本处理列表中的对象),您的脚本可以简化为

Filter (pass Hann band): 0, 400, 20

它适用于多个选定的Sound对象。

如果您绝对需要循环(即,如果您将处理非常大的文件集),您可能也有兴趣使用vieweach插件,它是为了尽量减少这种样板而编写的(完整的免责声明:我写了插入)。我也写了一篇关于它的更长的博客文章

于 2016-09-17T08:14:03.900 回答