First time here? Check out the FAQ!
x

Base Pitch value into the header

+1 vote
180 views
Hi!

If I want to enter the same Base Pitch value into the header of each and every sample in a folder ... is there some easy way, or I'll have to do it manually?

Thanx

S
asked Apr 29, 2023 in Using Kyma by samuel-sacher (Practitioner) (590 points)

1 Answer

+2 votes

You could paste this into a Kyma Notebook:

'037_2c#_99_testBasePitch.aif' fileNamesOfSameTypeInSameFolder do: [ :fN | fN asSamplesFile uiBasePitch: 0 nn; updateHeader].

Replace the file name with one of the files in the folder you'd like to modify, and replace 0 nn with the desired base pitch. Then select the entire line and evaluate it using Ctrl+Y (Or Edit menu > Evaluate).

Take care that the file name is unique (otherwise Kyma might find a different folder containing a file of that same name). You can do a group rename in the Finder by selecting all the file and doing a right click (ctrl+click) and selecting Rename... from the menu.

answered May 4, 2023 by ssc (Savant) (126,620 points)
Thank you!!!
Works, of course, perfectly ....
...