Use --fundamental for frequencies output as well as OSC
This commit is contained in:
parent
44506eed14
commit
8ea5c4fe0c
|
|
@ -472,7 +472,7 @@ def main():
|
|||
"--fundamental",
|
||||
type=float,
|
||||
default=100,
|
||||
help="Fundamental frequency in Hz for OSC output (default: 100)",
|
||||
help="Fundamental frequency in Hz for frequencies output and OSC (default: 100)",
|
||||
)
|
||||
args = parser.parse_args()
|
||||
|
||||
|
|
@ -639,7 +639,9 @@ def main():
|
|||
print(f"Written to {args.output_dir}/output_chords.txt")
|
||||
|
||||
write_chord_sequence_frequencies(
|
||||
path_obj.output_chords, os.path.join(args.output_dir, "output_frequencies.txt")
|
||||
path_obj.output_chords,
|
||||
os.path.join(args.output_dir, "output_frequencies.txt"),
|
||||
fundamental=args.fundamental,
|
||||
)
|
||||
print(f"Written to {args.output_dir}/output_frequencies.txt")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue