Hello I am trying to save a wav file on Mac/M2/Sonoma but it is does not seem to be working.
With the code:
from scamp import *
playback_settings.recording_file_path = “test.wav”
s = Session()
from scamp import test_run
test_run.play(show_lilypond=True)
I get a warning that playback_settings (ad Session) is not defined, and then a bunch of errors and the script does not execute. The code:
from scamp import *
s = Session()
from scamp import test_run
test_run.play(show_lilypond=True)
Gets the warning “Session is not defined”, but the script works fine.
thank you in advance for the help.
Davide
PS Apparently even if I import * I need to specify import test_run to execute the test run