1

Support Ableton Suite

This commit is contained in:
Evan Pratten 2023-11-15 10:03:37 -05:00
parent c7cf7b0c27
commit 27d0e90036

View File

@ -69,10 +69,10 @@ def main() -> int:
prog="ableton-linux", description="Executes Ableton on Linux" prog="ableton-linux", description="Executes Ableton on Linux"
) )
ap.add_argument( ap.add_argument(
"--bottle", "-b", help="Use the specified bottle", default="Ableton 11 Standard" "--bottle", "-b", help="Use the specified bottle", default="Ableton 11 Suite"
) )
ap.add_argument( ap.add_argument(
"--program", "-p", help="Program to run", default="Ableton Live 11 Standard" "--program", "-p", help="Program to run", default="Ableton Live 11 Suite"
) )
ap.add_argument( ap.add_argument(
"-v", "--verbose", help="Enable verbose logging", action="store_true" "-v", "--verbose", help="Enable verbose logging", action="store_true"
@ -125,6 +125,9 @@ def main() -> int:
"WINEASIO_NUMBER_INPUTS": "16", "WINEASIO_NUMBER_INPUTS": "16",
"WINEASIO_NUMBER_OUTPUTS": "16", "WINEASIO_NUMBER_OUTPUTS": "16",
"WINEASIO_CONNECT_TO_HARDWARE": "1", "WINEASIO_CONNECT_TO_HARDWARE": "1",
"WINEASIO_PREFERRED_BUFFERSIZE": "2048",
"WINEASIO_FIXED_BUFFERSIZE": "1",
# "PIPEWIRE_LATENCY": "2048/48000", # Buffer size / sample rate
} }
) )