Ableton 10 incompatibility?
Closed this issue · 2 comments
ijhicks commented
Hi I just attempted to run this script with ableton and received an error:
python3 ableton_retime.py --current-bpm 123 --target-bpm 106 201223_virus badself.als virus_test.als usage: ableton_retime.py [-h] --current-bpm CURRENT_BPM --target-bpm TARGET_BPM source_file target_file ableton_retime.py: error: unrecognized arguments: virus_test.als
I'm wondering if 10 removed the ability to create a new project w python?
henrybetts commented
Hi, it looks like you have a space in your filename, so the script is picking up an extra argument. You should be able to wrap the filename in quotes, like so:
python3 ableton_retime.py --current-bpm 123 --target-bpm 106 "201223_virus badself.als" virus_test.als
Henry
ijhicks commented
ah yes, that worked! thank you! and thanks for creating this script, SUPER
helpful!
…On Sun, Dec 27, 2020 at 5:13 AM Henry Betts ***@***.***> wrote:
Hi, it looks like you have a space in your filename, so the script is
picking up an extra argument. You should be able to wrap the filename in
quotes, like so:
python3 ableton_retime.py --current-bpm 123 --target-bpm 106 "201223_virus
badself.als" virus_test.als
Henry
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGLWAITVOB2SROAURHWKZDTSW4XGZANCNFSM4VKNULBQ>
.