いくつかの音声ファイルがあり、音声ファイルの特定の部分を 0.21 ミリ秒から 0.45 ミリ秒にカットする必要があります。以下のスクリプトは、0.21 ミリ秒から 0.45 ミリ秒までのサウンド セグメントを選択して保存します。音声ファイルからセグメントを切り取り、それなしで保存したいと考えています。おそらく、「選択範囲の終わりを最も近いゼロクロッシングに移動」の後に別の行を追加し、「選択したサウンドを書き込む...」を変更する必要がありますが、正確な方法はわかりません。
form Files
sentence InputDir ./
endform
createDirectory ("output")
Create Strings as file list... list 'inputDir$'*.wav
numberOfFiles = Get number of strings
for ifile to numberOfFiles
select Strings list
fileName$ = Get string... ifile
Read from file... 'inputDir$''fileName$'
sound_name$ = selected$ ("Sound")
select Sound 'sound_name$'
Edit
editor Sound 'sound_name$'
Select... 0.21 0.45
Move start of selection to nearest zero crossing
Move end of selection to nearest zero crossing
Write selected sound to WAV file... ./output/'fileName$'
endeditor
select all
minus Strings list
Remove
endfor
select all
Remove