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-single 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Script to start carla plugin bridges
  4. # Copyright (C) 2015 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
  19. import os
  20. import sys
  21. # --------------------------------------------------------------------------------------------------------
  22. # Setup
  23. INSTALL_PREFIX = "X-PREFIX-X"
  24. CARLA_LIBDIR = os.path.join(INSTALL_PREFIX, "lib", "carla")
  25. CARLA_RESDIR = os.path.join(INSTALL_PREFIX, "share", "carla", "resources")
  26. # --------------------------------------------------------------------------------------------------------
  27. # Check for enough arguments
  28. usageMsg = """\
  29. usage: %s [arch (optional)] [format] [filename/uri] [label (optional)] [uniqueId (optional)]
  30. Possible archs:
  31. - native (default)
  32. - linux32
  33. - linux64
  34. - win32
  35. - win64
  36. Possible formats:
  37. - internal
  38. - ladspa
  39. - dssi
  40. - lv2
  41. - vst|vst2
  42. - gig
  43. - sf2
  44. - sfz
  45. Examples:
  46. $ %s internal midisplit
  47. $ %s dssi /usr/lib/dssi/whysynth.so
  48. $ %s lv2 http://calf.sourceforge.net/plugins/Compressor
  49. $ %s native vst /usr/lib/vst/TAL-NoiseMaker.so
  50. $ %s win32 vst \"~/.wine/drive_c/Program Files (x86)/VstPlugins/Kontakt 5.dll\"
  51. Format can be skipped for internal and lv2 plugins (auto-detected), like this:
  52. $ %s midipattern
  53. $ %s http://synthv1.sourceforge.net/lv2""" % ((sys.argv[0],)*8)
  54. def printUsageAndQuit():
  55. print(usageMsg)
  56. sys.exit(0)
  57. if len(sys.argv) < 2:
  58. printUsageAndQuit()
  59. # --------------------------------------------------------------------------------------------------------
  60. # Initialize variables to null
  61. ARCH = "native"
  62. FORMAT = "none"
  63. FILENAME = ""
  64. LABEL = ""
  65. UNIQUEID = 0
  66. # --------------------------------------------------------------------------------------------------------
  67. # Set arch
  68. arg = 1
  69. if sys.argv[arg] in ("native", "posix32", "posix64", "linux32", "linux64", "mac32", "mac64", "win32", "win64"):
  70. ARCH = sys.argv[arg].replace("linux", "posix").replace("mac", "posix")
  71. arg += 1
  72. if len(sys.argv) == arg:
  73. printUsageAndQuit()
  74. # --------------------------------------------------------------------------------------------------------
  75. # Set format
  76. if sys.argv[arg] in ("internal", "ladspa", "dssi", "lv2", "vst", "vst2", "gig", "sf2", "sfz"):
  77. FORMAT = sys.argv[arg]
  78. arg += 1
  79. if FORMAT == "vst":
  80. FORMAT = "vst2"
  81. elif len(sys.argv) == arg+1:
  82. FORMAT = "lv2" if ":" in sys.argv[arg] else "internal"
  83. else:
  84. print("Invalid format")
  85. sys.exit(1)
  86. if len(sys.argv) == arg:
  87. printUsageAndQuit()
  88. # --------------------------------------------------------------------------------------------------------
  89. # Set filename/uri
  90. if FORMAT in ("internal", "lv2"):
  91. LABEL = sys.argv[arg]
  92. arg += 1
  93. else:
  94. FILENAME = os.path.expanduser(sys.argv[arg])
  95. arg += 1
  96. # --------------------------------------------------------------------------------------------------------
  97. # Set label (optional)
  98. if len(sys.argv) > arg:
  99. if FORMAT == "internal":
  100. print("label/uri already set, ignoring 2nd label")
  101. elif FORMAT == "lv2":
  102. newpwd = sys.argv[arg]
  103. if os.path.exists(newpwd):
  104. print("using path hack for lv2 plugin")
  105. os.chdir(newpwd)
  106. else:
  107. LABEL = sys.argv[arg]
  108. arg += 1
  109. # --------------------------------------------------------------------------------------------------------
  110. # Set uniqueId (optional)
  111. if len(sys.argv) > arg:
  112. if FORMAT in ("internal", "dssi", "lv2", "au", "gig", "sf2", "sfz"):
  113. print("uniqueId is not used in this format, ignored")
  114. else:
  115. try:
  116. UNIQUEID = int(sys.argv[arg])
  117. except:
  118. print("uniqueId must be a number")
  119. sys.exit(1)
  120. arg += 1
  121. # --------------------------------------------------------------------------------------------------------
  122. # Others?
  123. if len(sys.argv) > arg:
  124. print("Got too many arguments, ignoring past uniqueId")
  125. # --------------------------------------------------------------------------------------------------------
  126. # Set bridge binary
  127. BRIDGE = os.path.join(CARLA_LIBDIR, "carla-bridge-" + ARCH)
  128. if ARCH in ("win32", "win64"):
  129. BRIDGE = BRIDGE + ".exe"
  130. # --------------------------------------------------------------------------------------------------------
  131. # Check for existing carla folder
  132. if not os.path.exists(CARLA_LIBDIR):
  133. print("Carla library folder does not exist, is Carla installed?")
  134. sys.exit(2)
  135. if not os.path.exists(CARLA_RESDIR):
  136. print("Carla resource folder does not exist, is Carla installed?")
  137. sys.exit(2)
  138. # --------------------------------------------------------------------------------------------------------
  139. # Check for existing arch binary
  140. if not os.path.exists(BRIDGE):
  141. print("Carla plugin bridge for the requested arch (%s) does not exist" % (ARCH,))
  142. sys.exit(2)
  143. # --------------------------------------------------------------------------------------------------------
  144. # Final checks
  145. if ARCH not in ("native", "posix32", "posix64", "win32", "win64"):
  146. print("Invalid arch")
  147. sys.exit(1)
  148. if FORMAT not in ("internal", "ladspa", "dssi", "lv2", "vst2", "gig", "sf2", "sfz"):
  149. print("Invalid format")
  150. sys.exit(1)
  151. if FILENAME and not os.path.exists(FILENAME):
  152. print("Requested filename does not exist")
  153. sys.exit(1)
  154. # --------------------------------------------------------------------------------------------------------
  155. # Setup environment
  156. #os.environ["ENGINE_OPTION_UIS_ALWAYS_ON_TOP"] = "false"
  157. #os.environ["ENGINE_OPTION_MAX_PARAMETERS"] = "200"
  158. #os.environ["ENGINE_OPTION_UI_BRIDGES_TIMEOUT"] = "3000"
  159. LADSPA_PATH = os.getenv("LADSPA_PATH")
  160. DSSI_PATH = os.getenv("DSSI_PATH")
  161. LV2_PATH = os.getenv("LV2_PATH")
  162. VST2_PATH = os.getenv("VST_PATH")
  163. GIG_PATH = os.getenv("GIG_PATH")
  164. SF2_PATH = os.getenv("SF2_PATH")
  165. SFZ_PATH = os.getenv("SFZ_PATH")
  166. if LADSPA_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_LADSPA"] = LADSPA_PATH
  167. if DSSI_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_DSSI"] = DSSI_PATH
  168. if LV2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_LV2"] = LV2_PATH
  169. if VST2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_VST2"] = VST2_PATH
  170. if GIG_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_GIG"] = GIG_PATH
  171. if SF2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_SF2"] = SF2_PATH
  172. if SFZ_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_SFZ"] = SFZ_PATH
  173. os.environ["ENGINE_OPTION_PATH_BINARIES"] = CARLA_LIBDIR
  174. os.environ["ENGINE_OPTION_PATH_RESOURCES"] = CARLA_RESDIR
  175. # --------------------------------------------------------------------------------------------------------
  176. CARLA_CLIENT_NAME = os.getenv("CARLA_CLIENT_NAME")
  177. LADISH_APP_NAME = os.getenv("LADISH_APP_NAME")
  178. if CARLA_CLIENT_NAME is not None:
  179. os.environ["CARLA_CLIENT_NAME"] = CARLA_CLIENT_NAME
  180. elif CARLA_CLIENT_NAME is not None:
  181. os.environ["CARLA_CLIENT_NAME"] = LADISH_APP_NAME
  182. else:
  183. os.environ["CARLA_CLIENT_NAME"] = "(none)"
  184. # --------------------------------------------------------------------------------------------------------
  185. # Exec
  186. command = []
  187. if ARCH == "win32":
  188. command.append("wine")
  189. elif ARCH == "win64":
  190. command.append("wine64")
  191. command.append(BRIDGE)
  192. command.append(FORMAT)
  193. command.append(FILENAME or "(none)")
  194. command.append(LABEL or "(none)")
  195. command.append(str(UNIQUEID))
  196. print(command)
  197. os.execvp(command[0], command)
  198. # --------------------------------------------------------------------------------------------------------