Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

carla-jack-multi 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla plugin host
  4. # Copyright (C) 2011-2017 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # ----------------------------------------------------------------------------------------------------------------------
  18. # Imports (Custom Stuff)
  19. from carla_host import *
  20. # ----------------------------------------------------------------------------------------------------------------------
  21. # Main
  22. if __name__ == '__main__':
  23. # ------------------------------------------------------------------------------------------------------------------
  24. # Read CLI args
  25. initName, libPrefix = handleInitialCommandLineArguments(__file__ if "__file__" in dir() else None)
  26. # ------------------------------------------------------------------------------------------------------------------
  27. # App initialization
  28. app = CarlaApplication("Carla2-Multi-Client", libPrefix)
  29. # ------------------------------------------------------------------------------------------------------------------
  30. # Set-up custom signal handling
  31. setUpSignals()
  32. # ------------------------------------------------------------------------------------------------------------------
  33. # Init host backend
  34. os.environ["CARLA_NSM_NAME"] = "Carla-Multi-Client"
  35. host = initHost(initName, libPrefix, False, False, True)
  36. host.audioDriverForced = "JACK"
  37. host.processMode = ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS
  38. host.processModeForced = True
  39. host.transportMode = ENGINE_TRANSPORT_MODE_JACK
  40. loadHostSettings(host)
  41. # ------------------------------------------------------------------------------------------------------------------
  42. # Create GUI
  43. gui = HostWindow(host, True)
  44. # ------------------------------------------------------------------------------------------------------------------
  45. # Show GUI
  46. gui.showIfNeeded()
  47. # ------------------------------------------------------------------------------------------------------------------
  48. # App-Loop
  49. app.exit_exec()