diff --git a/docs/html/pipewire_python.html b/docs/html/pipewire_python.html index 4b53262..046c892 100644 --- a/docs/html/pipewire_python.html +++ b/docs/html/pipewire_python.html @@ -97,7 +97,28 @@

Install via

Tutorial

-

Tutorial here

+
from pipewire_python.controller import Controller
+
+# PLAYBACK: normal way
+audio_controller = Controller(verbose=True)
+audio_controller.set_config(rate=384000,
+                            channels=2,
+                            _format='f64',
+                            volume=0.98,
+                            quality=4,
+                            # Debug
+                            verbose=True)
+audio_controller.playback(audio_filename='docs/beers.wav',
+                          # Debug
+                          verbose=True)
+
+# RECORD: normal way
+audio_controller = Controller(verbose=True)
+audio_controller.record(audio_filename='docs/5sec_record.wav',
+                        timeout_seconds=5,
+                        # Debug
+                        verbose=True)
+
@@ -146,10 +167,34 @@

Tutorial

## Tutorial -Tutorial [here](https://github.com/pablodz/pipewire_python/blob/main/README.py) + +```python +from pipewire_python.controller import Controller + +# PLAYBACK: normal way +audio_controller = Controller(verbose=True) +audio_controller.set_config(rate=384000, + channels=2, + _format='f64', + volume=0.98, + quality=4, + # Debug + verbose=True) +audio_controller.playback(audio_filename='docs/beers.wav', + # Debug + verbose=True) + +# RECORD: normal way +audio_controller = Controller(verbose=True) +audio_controller.record(audio_filename='docs/5sec_record.wav', + timeout_seconds=5, + # Debug + verbose=True) + +``` """ -__version__ = "0.0.91" +__version__ = "0.0.92" import sys diff --git a/docs/html/pipewire_python/controller.html b/docs/html/pipewire_python/controller.html index a63732e..a51308f 100644 --- a/docs/html/pipewire_python/controller.html +++ b/docs/html/pipewire_python/controller.html @@ -142,9 +142,8 @@

""" _pipewire_cli = { # Help - "--help": None, # -h - "--version": None, - "--verbose": None, # -v + "--help": "--help", # -h + "--version": "--version", "--remote": None, # -r } @@ -167,10 +166,17 @@

"--latency": None, # *default=100ms (SOURCE FILE if not specified) "--rate": None, # *default=48000 "--channels": None, # [1,2] *default=2 - "--channel-map": None, # ["stereo", "surround-51", "FL,FR"...] *default=unknown + "--channel-map": None, # ["stereo", "surround-51", "FL,FR"...] *default="FL,FR" "--format": None, # [u8|s8|s16|s32|f32|f64] *default=s16 "--volume": None, # [0.0,1.0] *default=1.000 "--quality": None, # -q # [0,15] *default=4 + "--verbose": None, # -v + } + + _kill_pipewire = { + "all": ["kill", "$(pidof pw-cat)"], + "playback": ["kill", "$(pidof pw-play)"], + "record": ["kill", "$(pidof pw-record)"], } def __init__( @@ -217,10 +223,18 @@

self.load_list_targets(mode="playback", verbose=verbose) self.load_list_targets(mode="record", verbose=verbose) - def _help(self): + def _help_cli( + self, + # Debug + verbose: bool = True, + ): """Get pipewire command line help""" - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + mycommand = ["pipewire", self._pipewire_cli["--help"]] + + stdout, _ = _execute_shell_command(command=mycommand, verbose=verbose) # stderr + + return stdout def get_version( self, @@ -254,10 +268,13 @@

return versions - def verbose(self): - """[⚠️NOT IMPLEMENTED YET] + def verbose( + self, + status: bool = True, + ): + """Get full log of pipewire stream status with the command `pw-cat` - Get full log of pipewire stream status with the following command + An example of pw-cli usage is the code below: ```bash #!/bin/bash @@ -265,7 +282,7 @@

pw-cat --playback beers.wav --verbose ``` - will generate an output like this: + that will generate an output like this: ```bash opened file "beers.wav" format 00010002 channels:2 rate:44100 @@ -276,49 +293,30 @@

stream param change: id=2 stream properties: media.type = "Audio" - media.category = "Playback" - media.role = "Music" - application.name = "pw-cat" - media.filename = "beers.wav" - media.name = "beers.wav" - node.name = "pw-cat" - media.software = "Lavf58.33.100" - media.format = "WAV (Microsoft)" - node.latency = "4410/44100" - stream.is-live = "true" - node.autoconnect = "true" - media.class = "Stream/Output/Audio" + ... now=0 rate=0/0 ticks=0 delay=0 queued=0 remote 0 is named "pipewire-0" core done stream state changed connecting -> paused stream param change: id=2 - stream param change: id=15 - stream param change: id=15 - stream param change: id=4 - stream state changed paused -> streaming - stream param change: id=2 - set stream volume to 1.000 - success - stream node 73 + ... stream param change: id=15 stream param change: id=15 now=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0 now=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0 - now=13467250652784 rate=1/48000 ticks=124928 delay=512 queued=0 - now=13468381462104 rate=1/48000 ticks=179200 delay=512 queued=0 - now=13469490934155 rate=1/48000 ticks=232448 delay=512 queued=0 - now=13470600406171 rate=1/48000 ticks=285696 delay=512 queued=0 - now=13471347166416 rate=1/48000 ticks=321536 delay=512 queued=0 + ... stream drained stream state changed streaming -> paused stream param change: id=4 stream state changed paused -> unconnected stream param change: id=4 - ``` """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + if status: + self._pipewire_configs["--verbose"] = " " + else: + pass def get_config(self): """Return config dictionary with default or setup variables, remember that @@ -377,7 +375,6 @@

More: Check all links listed at the beginning of this page - """ # 1 - media_type if media_type: self._pipewire_configs["--media-type"] = str(media_type) @@ -498,6 +495,12 @@

else: raise ValueError(f"{MESSAGES_ERROR['ValueError']}[volume='{volume}'] EMPTY VALUE") + # 12 - verbose cli + if verbose: # True + self._pipewire_configs["--verbose"] = " " + else: + pass + if verbose: print(self._pipewire_configs) @@ -661,12 +664,27 @@

# Debug verbose: bool = False, ): - """[⚠️NOT IMPLEMENTED YET] - Function to stop process running under pipewire. - Example: pw-cat process + """Function to stop process running under pipewire executed by + python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`. + + Args: + mode (`str`) : string to kill process under `pw-cat`, `pw-play` or `pw-record`. + + Returns: + - stdoutdict (`dict`) : a dictionary with keys of `mode`. + + Example with pipewire: + pw-cat process """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + mycommand = self._kill_pipewire[mode] + + if verbose: + print(f"[mycommands]{mycommand}") + + stdout, _ = _execute_shell_command(command=mycommand, verbose=verbose) + + return {mode: stdout}

@@ -691,9 +709,8 @@

""" _pipewire_cli = { # Help - "--help": None, # -h - "--version": None, - "--verbose": None, # -v + "--help": "--help", # -h + "--version": "--version", "--remote": None, # -r } @@ -716,10 +733,17 @@

"--latency": None, # *default=100ms (SOURCE FILE if not specified) "--rate": None, # *default=48000 "--channels": None, # [1,2] *default=2 - "--channel-map": None, # ["stereo", "surround-51", "FL,FR"...] *default=unknown + "--channel-map": None, # ["stereo", "surround-51", "FL,FR"...] *default="FL,FR" "--format": None, # [u8|s8|s16|s32|f32|f64] *default=s16 "--volume": None, # [0.0,1.0] *default=1.000 "--quality": None, # -q # [0,15] *default=4 + "--verbose": None, # -v + } + + _kill_pipewire = { + "all": ["kill", "$(pidof pw-cat)"], + "playback": ["kill", "$(pidof pw-play)"], + "record": ["kill", "$(pidof pw-record)"], } def __init__( @@ -766,10 +790,18 @@

self.load_list_targets(mode="playback", verbose=verbose) self.load_list_targets(mode="record", verbose=verbose) - def _help(self): + def _help_cli( + self, + # Debug + verbose: bool = True, + ): """Get pipewire command line help""" - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + mycommand = ["pipewire", self._pipewire_cli["--help"]] + + stdout, _ = _execute_shell_command(command=mycommand, verbose=verbose) # stderr + + return stdout def get_version( self, @@ -803,10 +835,13 @@

return versions - def verbose(self): - """[⚠️NOT IMPLEMENTED YET] + def verbose( + self, + status: bool = True, + ): + """Get full log of pipewire stream status with the command `pw-cat` - Get full log of pipewire stream status with the following command + An example of pw-cli usage is the code below: ```bash #!/bin/bash @@ -814,7 +849,7 @@

pw-cat --playback beers.wav --verbose ``` - will generate an output like this: + that will generate an output like this: ```bash opened file "beers.wav" format 00010002 channels:2 rate:44100 @@ -825,49 +860,30 @@

stream param change: id=2 stream properties: media.type = "Audio" - media.category = "Playback" - media.role = "Music" - application.name = "pw-cat" - media.filename = "beers.wav" - media.name = "beers.wav" - node.name = "pw-cat" - media.software = "Lavf58.33.100" - media.format = "WAV (Microsoft)" - node.latency = "4410/44100" - stream.is-live = "true" - node.autoconnect = "true" - media.class = "Stream/Output/Audio" + ... now=0 rate=0/0 ticks=0 delay=0 queued=0 remote 0 is named "pipewire-0" core done stream state changed connecting -> paused stream param change: id=2 - stream param change: id=15 - stream param change: id=15 - stream param change: id=4 - stream state changed paused -> streaming - stream param change: id=2 - set stream volume to 1.000 - success - stream node 73 + ... stream param change: id=15 stream param change: id=15 now=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0 now=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0 - now=13467250652784 rate=1/48000 ticks=124928 delay=512 queued=0 - now=13468381462104 rate=1/48000 ticks=179200 delay=512 queued=0 - now=13469490934155 rate=1/48000 ticks=232448 delay=512 queued=0 - now=13470600406171 rate=1/48000 ticks=285696 delay=512 queued=0 - now=13471347166416 rate=1/48000 ticks=321536 delay=512 queued=0 + ... stream drained stream state changed streaming -> paused stream param change: id=4 stream state changed paused -> unconnected stream param change: id=4 - ``` """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + if status: + self._pipewire_configs["--verbose"] = " " + else: + pass def get_config(self): """Return config dictionary with default or setup variables, remember that @@ -926,7 +942,6 @@

More: Check all links listed at the beginning of this page - """ # 1 - media_type if media_type: self._pipewire_configs["--media-type"] = str(media_type) @@ -1047,6 +1062,12 @@

else: raise ValueError(f"{MESSAGES_ERROR['ValueError']}[volume='{volume}'] EMPTY VALUE") + # 12 - verbose cli + if verbose: # True + self._pipewire_configs["--verbose"] = " " + else: + pass + if verbose: print(self._pipewire_configs) @@ -1210,12 +1231,27 @@

# Debug verbose: bool = False, ): - """[⚠️NOT IMPLEMENTED YET] - Function to stop process running under pipewire. - Example: pw-cat process + """Function to stop process running under pipewire executed by + python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`. + + Args: + mode (`str`) : string to kill process under `pw-cat`, `pw-play` or `pw-record`. + + Returns: + - stdoutdict (`dict`) : a dictionary with keys of `mode`. + + Example with pipewire: + pw-cat process """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + mycommand = self._kill_pipewire[mode] + + if verbose: + print(f"[mycommands]{mycommand}") + + stdout, _ = _execute_shell_command(command=mycommand, verbose=verbose) + + return {mode: stdout} @@ -1367,15 +1403,18 @@

Returns
def - verbose(self): + verbose(self, status: bool = True):
View Source -
    def verbose(self):
-        """[⚠️NOT IMPLEMENTED YET]
+            
    def verbose(
+        self,
+        status: bool = True,
+    ):
+        """Get full log of pipewire stream status with the command `pw-cat`
 
-        Get full log of pipewire stream status with the following command
+        An example of pw-cli usage is the code below:
 
         ```bash
         #!/bin/bash
@@ -1383,7 +1422,7 @@ 
Returns
pw-cat --playback beers.wav --verbose ``` - will generate an output like this: + that will generate an output like this: ```bash opened file "beers.wav" format 00010002 channels:2 rate:44100 @@ -1394,63 +1433,44 @@
Returns
stream param change: id=2 stream properties: media.type = "Audio" - media.category = "Playback" - media.role = "Music" - application.name = "pw-cat" - media.filename = "beers.wav" - media.name = "beers.wav" - node.name = "pw-cat" - media.software = "Lavf58.33.100" - media.format = "WAV (Microsoft)" - node.latency = "4410/44100" - stream.is-live = "true" - node.autoconnect = "true" - media.class = "Stream/Output/Audio" + ... now=0 rate=0/0 ticks=0 delay=0 queued=0 remote 0 is named "pipewire-0" core done stream state changed connecting -> paused stream param change: id=2 - stream param change: id=15 - stream param change: id=15 - stream param change: id=4 - stream state changed paused -> streaming - stream param change: id=2 - set stream volume to 1.000 - success - stream node 73 + ... stream param change: id=15 stream param change: id=15 now=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0 now=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0 - now=13467250652784 rate=1/48000 ticks=124928 delay=512 queued=0 - now=13468381462104 rate=1/48000 ticks=179200 delay=512 queued=0 - now=13469490934155 rate=1/48000 ticks=232448 delay=512 queued=0 - now=13470600406171 rate=1/48000 ticks=285696 delay=512 queued=0 - now=13471347166416 rate=1/48000 ticks=321536 delay=512 queued=0 + ... stream drained stream state changed streaming -> paused stream param change: id=4 stream state changed paused -> unconnected stream param change: id=4 - ``` """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + if status: + self._pipewire_configs["--verbose"] = " " + else: + pass
-

[⚠️NOT IMPLEMENTED YET]

+

Get full log of pipewire stream status with the command pw-cat

-

Get full log of pipewire stream status with the following command

+

An example of pw-cli usage is the code below:

#!/bin/bash
 # For example
 pw-cat --playback beers.wav --verbose
 
-

will generate an output like this:

+

that will generate an output like this:

opened file "beers.wav" format 00010002 channels:2 rate:44100
 using default channel map: FL,FR
@@ -1460,39 +1480,18 @@ 
Returns
stream param change: id=2 stream properties: media.type = "Audio" - media.category = "Playback" - media.role = "Music" - application.name = "pw-cat" - media.filename = "beers.wav" - media.name = "beers.wav" - node.name = "pw-cat" - media.software = "Lavf58.33.100" - media.format = "WAV (Microsoft)" - node.latency = "4410/44100" - stream.is-live = "true" - node.autoconnect = "true" - media.class = "Stream/Output/Audio" + ... now=0 rate=0/0 ticks=0 delay=0 queued=0 remote 0 is named "pipewire-0" core done stream state changed connecting -> paused stream param change: id=2 -stream param change: id=15 -stream param change: id=15 -stream param change: id=4 -stream state changed paused -> streaming -stream param change: id=2 -set stream volume to 1.000 - success -stream node 73 +... stream param change: id=15 stream param change: id=15 now=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0 now=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0 -now=13467250652784 rate=1/48000 ticks=124928 delay=512 queued=0 -now=13468381462104 rate=1/48000 ticks=179200 delay=512 queued=0 -now=13469490934155 rate=1/48000 ticks=232448 delay=512 queued=0 -now=13470600406171 rate=1/48000 ticks=285696 delay=512 queued=0 -now=13471347166416 rate=1/48000 ticks=321536 delay=512 queued=0 +... stream drained stream state changed streaming -> paused stream param change: id=4 @@ -1618,7 +1617,6 @@
Returns
More: Check all links listed at the beginning of this page - """ # 1 - media_type if media_type: self._pipewire_configs["--media-type"] = str(media_type) @@ -1739,6 +1737,12 @@
Returns
else: raise ValueError(f"{MESSAGES_ERROR['ValueError']}[volume='{volume}'] EMPTY VALUE") + # 12 - verbose cli + if verbose: # True + self._pipewire_configs["--verbose"] = " " + else: + pass + if verbose: print(self._pipewire_configs)
@@ -2123,19 +2127,50 @@
Returns
# Debug verbose: bool = False, ): - """[⚠️NOT IMPLEMENTED YET] - Function to stop process running under pipewire. - Example: pw-cat process + """Function to stop process running under pipewire executed by + python controller and with default process name of `pw-cat`, `pw-play` or `pw-record`. + + Args: + mode (`str`) : string to kill process under `pw-cat`, `pw-play` or `pw-record`. + + Returns: + - stdoutdict (`dict`) : a dictionary with keys of `mode`. + + Example with pipewire: + pw-cat process """ - raise NotImplementedError(MESSAGES_ERROR["NotImplementedError"]) + mycommand = self._kill_pipewire[mode] + + if verbose: + print(f"[mycommands]{mycommand}") + + stdout, _ = _execute_shell_command(command=mycommand, verbose=verbose) + + return {mode: stdout}
-

[⚠️NOT IMPLEMENTED YET] -Function to stop process running under pipewire. -Example: pw-cat process

+

Function to stop process running under pipewire executed by +python controller and with default process name of pw-cat, pw-play or pw-record.

+ +
Args
+ +
    +
  • mode (str) : string to kill process under pw-cat, pw-play or pw-record.
  • +
+ +
Returns
+ +
+
    +
  • stdoutdict (dict) : a dictionary with keys of mode.
  • +
+
+ +

Example with pipewire: + pw-cat process

diff --git a/docs/html/search.json b/docs/html/search.json index d20f654..0d0a307 100644 --- a/docs/html/search.json +++ b/docs/html/search.json @@ -1 +1 @@ -{"version": "0.9.5", "fields": ["qualname", "fullname", "doc"], "ref": "fullname", "documentStore": {"docs": {"pipewire_python": {"fullname": "pipewire_python", "modulename": "pipewire_python", "qualname": "", "type": "module", "doc": "

Description

\n\n

PIPEWIRE provides a low-latency, graph based processing engine\non top of audio and video devices that can be used to\nsupport the use cases currently handled by both pulseaudio\nand JACK. PipeWire was designed with a powerful security model\nthat makes interacting with audio and video devices from \ncontainerized applications easy, with supporting Flatpak\napplications being the primary goal. Alongside Wayland and\nFlatpak we expect PipeWire to provide a core building block \nfor the future of Linux application development.

\n\n

pipewire_python \ncontrolls pipewire via terminal, creating shell commands and executing them as required.

\n\n

\ud83c\udfb9 There are two ways to manage the python package:

\n\n
    \n
  1. NO_ASYNC: this way works as expected with delay time between \npipewire_python and the rest of your code.

  2. \n
  3. ASYNC: [\u26a0\ufe0fNot yet implemented] this way works delegating the task to record or to play\na song file in background. Works with threads.

  4. \n
  5. MULTIPROCESS: [\u26a0\ufe0fNot yet implemented] Works with processes.

  6. \n
\n\n

\ud83d\udcc4 More information about pipewire and it's API's:

\n\n
    \n
  • \ud83c\udfb5 Asyncio https://docs.python.org/3/library/asyncio-subprocess.html
  • \n
  • \ud83c\udfb5 Pipewire APIs https://www.linuxfromscratch.org/blfs/view/cvs/multimedia/pipewire.html
  • \n
  • \ud83c\udfb5 APIs example https://fedoraproject.org/wiki/QA:Testcase_PipeWire_PipeWire_CLI
  • \n
\n\n

Developed with \u2764\ufe0f by Pablo Diaz & Anna Absi

\n\n

Install via

\n\n
pip3 install pipewire_python # or pip\n
\n\n

Tutorial

\n\n

Tutorial here

\n"}, "pipewire_python.controller": {"fullname": "pipewire_python.controller", "modulename": "pipewire_python.controller", "qualname": "", "type": "module", "doc": "

Documentation

\n\n

In the next pages you'll see documentation of each python component\ncontroller.py.

\n"}, "pipewire_python.controller.Controller": {"fullname": "pipewire_python.controller.Controller", "modulename": "pipewire_python.controller", "qualname": "Controller", "type": "class", "doc": "

Class that controls pipewire command line interface\nwith shell commands, handling outputs, loading default\nconfigs and more.

\n"}, "pipewire_python.controller.Controller.__init__": {"fullname": "pipewire_python.controller.Controller.__init__", "modulename": "pipewire_python.controller", "qualname": "Controller.__init__", "type": "function", "doc": "

This constructor load default configs from OS executing\nthe following pipewire command

\n\n
#!/bin/bash\n# Get defaults from output of:\npw-cat -h\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_version": {"fullname": "pipewire_python.controller.Controller.get_version", "modulename": "pipewire_python.controller", "qualname": "Controller.get_version", "type": "function", "doc": "

Get version of pipewire installed on OS by executing the following\ncode:

\n\n
#!/bin/bash\npw-cli --version\n
\n\n
Args
\n\n
    \n
  • verbose (bool) : True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • versions (list) : Versions of pipewire compiled
  • \n
\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.verbose": {"fullname": "pipewire_python.controller.Controller.verbose", "modulename": "pipewire_python.controller", "qualname": "Controller.verbose", "type": "function", "doc": "

[\u26a0\ufe0fNOT IMPLEMENTED YET]

\n\n

Get full log of pipewire stream status with the following command

\n\n
#!/bin/bash\n# For example\npw-cat --playback beers.wav --verbose\n
\n\n

will generate an output like this:

\n\n
opened file "beers.wav" format 00010002 channels:2 rate:44100\nusing default channel map: FL,FR\nrate=44100 channels=2 fmt=s16 samplesize=2 stride=4 latency=4410 (0.100s)\nconnecting playback stream; target_id=4294967295\nstream state changed unconnected -> connecting\nstream param change: id=2\nstream properties:\n    media.type = "Audio"\n    media.category = "Playback"\n    media.role = "Music"\n    application.name = "pw-cat"\n    media.filename = "beers.wav"\n    media.name = "beers.wav"\n    node.name = "pw-cat"\n    media.software = "Lavf58.33.100"\n    media.format = "WAV (Microsoft)"\n    node.latency = "4410/44100"\n    stream.is-live = "true"\n    node.autoconnect = "true"\n    media.class = "Stream/Output/Audio"\nnow=0 rate=0/0 ticks=0 delay=0 queued=0\nremote 0 is named "pipewire-0"\ncore done\nstream state changed connecting -> paused\nstream param change: id=2\nstream param change: id=15\nstream param change: id=15\nstream param change: id=4\nstream state changed paused -> streaming\nstream param change: id=2\nset stream volume to 1.000 - success\nstream node 73\nstream param change: id=15\nstream param change: id=15\nnow=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0\nnow=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0\nnow=13467250652784 rate=1/48000 ticks=124928 delay=512 queued=0\nnow=13468381462104 rate=1/48000 ticks=179200 delay=512 queued=0\nnow=13469490934155 rate=1/48000 ticks=232448 delay=512 queued=0\nnow=13470600406171 rate=1/48000 ticks=285696 delay=512 queued=0\nnow=13471347166416 rate=1/48000 ticks=321536 delay=512 queued=0\nstream drained\nstream state changed streaming -> paused\nstream param change: id=4\nstream state changed paused -> unconnected\nstream param change: id=4\n
\n", "parameters": ["self"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_config": {"fullname": "pipewire_python.controller.Controller.get_config", "modulename": "pipewire_python.controller", "qualname": "Controller.get_config", "type": "function", "doc": "

Return config dictionary with default or setup variables, remember that\nthis object changes only on python-side. Is not updated on real time,\nFor real-time, please create and destroy the class.

\n\n
Args
\n\n
    \n
  • Nothing
  • \n
\n\n
Returns
\n\n
\n
    \n
  • _pipewire_configs (dict) : dictionary with config values
  • \n
\n
\n", "parameters": ["self"], "funcdef": "def"}, "pipewire_python.controller.Controller.set_config": {"fullname": "pipewire_python.controller.Controller.set_config", "modulename": "pipewire_python.controller", "qualname": "Controller.set_config", "type": "function", "doc": "

Method that get args as variables and set them\nto the json parameter of the class _pipewire_configs,\nthen you can use in other method, such as playback(...) or\nrecord(...). This method verifies values to avoid wrong\nsettings.

\n\n
Args
\n\n
    \n
  • media_type : Set media type
  • \n
  • media_category : Set media category
  • \n
  • media_role : Set media role
  • \n
  • target : Set node target
  • \n
  • latency : Set node latency *example=100ms
  • \n
  • rate : Set sample rate [8000,11025,16000,22050,44100,48000,88200,96000,176400,192000,352800,384000]
  • \n
  • channels : Numbers of channels [1,2]
  • \n
  • channels_map : [\"stereo\", \"surround-51\", \"FL,FR\", ...]
  • \n
  • _format : [\"u8\", \"s8\", \"s16\", \"s32\", \"f32\", \"f64\"]
  • \n
  • volume : Stream volume [0.000, 1.000]
  • \n
  • quality : Resampler quality [0, 15]
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • Nothing
  • \n
\n
\n\n
More
\n\n
\n

Check all links listed at the beginning of this page

\n
\n", "parameters": ["self", "media_type", "media_category", "media_role", "target", "latency", "rate", "channels", "channels_map", "_format", "volume", "quality", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.load_list_targets": {"fullname": "pipewire_python.controller.Controller.load_list_targets", "modulename": "pipewire_python.controller", "qualname": "Controller.load_list_targets", "type": "function", "doc": "

Returns a list of targets to playback or record. Then you can use\nthe output to select a device to playback or record.

\n", "parameters": ["self", "mode", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_list_targets": {"fullname": "pipewire_python.controller.Controller.get_list_targets", "modulename": "pipewire_python.controller", "qualname": "Controller.get_list_targets", "type": "function", "doc": "

Returns a list of targets to playback or record. Then you can use\nthe output to select a device to playback or record.

\n\n
Returns
\n\n
\n
    \n
  • _pipewire_list_targets
  • \n
\n
\n\n

Examples:

\n\n
>>> Controller().get_list_targets()\n{\n"list_playblack": {\n    "86": {\n    "description": "Starship/Matisse HD Audio Controller Pro",\n    "prior": "936"\n    },\n    "_list_nodes": [\n    "86"\n    ],\n    "_node_default": [\n    "86"\n    ],\n    "_alsa_node": [\n    "alsa_output.pci-0000_0a_00.4.pro-output-0"\n    ]\n},\n"list_record": {\n    "86": {\n    "description": "Starship/Matisse HD Audio Controller Pro",\n    "prior": "936"\n    },\n    "_list_nodes": [\n    "86"\n    ],\n    "_node_default": [\n    "86"\n    ],\n    "_alsa_node": [\n    "alsa_output.pci-0000_0a_00.4.pro-output-0"\n    ]\n}\n}\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.playback": {"fullname": "pipewire_python.controller.Controller.playback", "modulename": "pipewire_python.controller", "qualname": "Controller.playback", "type": "function", "doc": "

Execute pipewire command to play an audio file with the following\ncommand:

\n\n
#!/bin/bash\npw-cat --playback {audio_filename} + {configs}\n# configs are a concatenated params\n
\n\n
Args
\n\n
    \n
  • audio_filename (str): Path of the file to be played. *default='myplayback.wav'
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • stdout (str): Shell response to the command in stdout format
  • \n
  • stderr (str): Shell response response to the command in stderr format
  • \n
\n
\n", "parameters": ["self", "audio_filename", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.record": {"fullname": "pipewire_python.controller.Controller.record", "modulename": "pipewire_python.controller", "qualname": "Controller.record", "type": "function", "doc": "

Execute pipewire command to record an audio file, with a timeout of 5\nseconds with the following code and exiting the shell when tiomeout is over.

\n\n
#!/bin/bash\npw-cat --record {audio_filename}\n# timeout is managed by python3 (when signal CTRL+C is sended)\n
\n\n
Args
\n\n
    \n
  • audio_filename (str): Path of the file to be played. *default='myplayback.wav'
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • stdout (str): Shell response to the command in stdout format
  • \n
  • stderr (str): Shell response response to the command in stderr format
  • \n
\n
\n", "parameters": ["self", "audio_filename", "timeout_seconds", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.clear_devices": {"fullname": "pipewire_python.controller.Controller.clear_devices", "modulename": "pipewire_python.controller", "qualname": "Controller.clear_devices", "type": "function", "doc": "

[\u26a0\ufe0fNOT IMPLEMENTED YET]\nFunction to stop process running under pipewire.\nExample: pw-cat process

\n", "parameters": ["self", "mode", "verbose"], "funcdef": "def"}}, "docInfo": {"pipewire_python": {"qualname": 0, "fullname": 1, "doc": 132}, "pipewire_python.controller": {"qualname": 0, "fullname": 2, "doc": 11}, "pipewire_python.controller.Controller": {"qualname": 1, "fullname": 3, "doc": 14}, "pipewire_python.controller.Controller.__init__": {"qualname": 2, "fullname": 4, "doc": 15}, "pipewire_python.controller.Controller.get_version": {"qualname": 2, "fullname": 4, "doc": 25}, "pipewire_python.controller.Controller.verbose": {"qualname": 2, "fullname": 4, "doc": 314}, "pipewire_python.controller.Controller.get_config": {"qualname": 2, "fullname": 4, "doc": 28}, "pipewire_python.controller.Controller.set_config": {"qualname": 2, "fullname": 4, "doc": 89}, "pipewire_python.controller.Controller.load_list_targets": {"qualname": 2, "fullname": 4, "doc": 11}, "pipewire_python.controller.Controller.get_list_targets": {"qualname": 2, "fullname": 4, "doc": 111}, "pipewire_python.controller.Controller.playback": {"qualname": 2, "fullname": 4, "doc": 48}, "pipewire_python.controller.Controller.record": {"qualname": 2, "fullname": 4, "doc": 57}, "pipewire_python.controller.Controller.clear_devices": {"qualname": 2, "fullname": 4, "doc": 11}}, "length": 13, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 11}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.__init__": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_version": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 12}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}}, "doc": {"root": {"0": {"0": {"0": {"0": {"docs": {}, "df": 0, "_": {"0": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "1": {"0": {"0": {"0": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 4}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 3}, "1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "2": {"4": {"9": {"2": {"8": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"4": {"6": {"5": {"3": {"9": {"4": {"4": {"1": {"9": {"2": {"7": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"5": {"2": {"5": {"2": {"2": {"8": {"3": {"6": {"3": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"2": {"5": {"0": {"6": {"5": {"2": {"7": {"8": {"4": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"3": {"8": {"1": {"4": {"6": {"2": {"1": {"0": {"4": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"4": {"9": {"0": {"9": {"3": {"4": {"1": {"5": {"5": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"0": {"6": {"0": {"0": {"4": {"0": {"6": {"1": {"7": {"1": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"3": {"4": {"7": {"1": {"6": {"6": {"4": {"1": {"6": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}, "7": {"9": {"2": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2, ",": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "2": {"3": {"2": {"4": {"4": {"8": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"5": {"6": {"9": {"6": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.23606797749979}}, "df": 1}, "3": {"2": {"1": {"5": {"3": {"6": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "5": {"8": {"4": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"2": {"9": {"4": {"9": {"6": {"7": {"2": {"9": {"5": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1, "/": {"4": {"4": {"1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.6457513110645907}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 2}, "5": {"1": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.6457513110645907}}, "df": 1}, "docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}, "7": {"3": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"1": {"0": {"2": {"5": {"docs": {}, "df": 0, ",": {"1": {"6": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"2": {"2": {"0": {"5": {"0": {"docs": {}, "df": 0, ",": {"4": {"4": {"1": {"0": {"0": {"docs": {}, "df": 0, ",": {"4": {"8": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"8": {"8": {"2": {"0": {"0": {"docs": {}, "df": 0, ",": {"9": {"6": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"7": {"6": {"4": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"9": {"2": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"3": {"5": {"2": {"8": {"0": {"0": {"docs": {}, "df": 0, ",": {"3": {"8": {"4": {"0": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 2.449489742783178}}, "df": 1}, "docs": {}, "df": 0}, "9": {"0": {"1": {"1": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 4, "=": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "'": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "z": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"3": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 2.449489742783178}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 2}}, "df": 1, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3.1622776601683795}, "pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 5}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 6}, "c": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 2}}, "g": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 3}}}}, "v": {"docs": {}, "df": 0, "f": {"5": {"8": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "x": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}}, "df": 1}, "k": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 4, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.23606797749979}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}}, "df": 2}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "=": {"1": {"0": {"0": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 3, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5, "_": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1, "'": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 2}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "u": {"8": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 5}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "s": {"1": {"6": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 2.8284271247461903}}, "df": 2, "u": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 2, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 4.898979485566356}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.23606797749979}}, "df": 1}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "t": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}}, "df": 4}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}}, "df": 4}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": null}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 2}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 6}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 4}}}, "i": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {}, "df": 0, ":": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "_": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3.872983346207417}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "+": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}, "p": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}, "pipewire_python.controller.Controller.set_config": {"tf": 1.7320508075688772}}, "df": 2, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 3}}}}}}}}, "t": {"docs": {}, "df": 0, "'": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "d": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3.1622776601683795}}, "df": 1}}, "f": {"3": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, ",": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.23606797749979}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 3}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 2}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 5}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 7}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2, ":": {"4": {"4": {"1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2}}, "w": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "/": {"3": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}}, "df": 5}}}}}, "s": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "'": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 5.477225575051661}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 6.928203230275509}}, "df": 2}}, "e": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.8284271247461903}}, "df": 1}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "pipeline": ["trimmer", "stopWordFilter", "stemmer"], "_isPrebuiltIndex": true} \ No newline at end of file +{"version": "0.9.5", "fields": ["qualname", "fullname", "doc"], "ref": "fullname", "documentStore": {"docs": {"pipewire_python": {"fullname": "pipewire_python", "modulename": "pipewire_python", "qualname": "", "type": "module", "doc": "

Description

\n\n

PIPEWIRE provides a low-latency, graph based processing engine\non top of audio and video devices that can be used to\nsupport the use cases currently handled by both pulseaudio\nand JACK. PipeWire was designed with a powerful security model\nthat makes interacting with audio and video devices from \ncontainerized applications easy, with supporting Flatpak\napplications being the primary goal. Alongside Wayland and\nFlatpak we expect PipeWire to provide a core building block \nfor the future of Linux application development.

\n\n

pipewire_python \ncontrolls pipewire via terminal, creating shell commands and executing them as required.

\n\n

\ud83c\udfb9 There are two ways to manage the python package:

\n\n
    \n
  1. NO_ASYNC: this way works as expected with delay time between \npipewire_python and the rest of your code.

  2. \n
  3. ASYNC: [\u26a0\ufe0fNot yet implemented] this way works delegating the task to record or to play\na song file in background. Works with threads.

  4. \n
  5. MULTIPROCESS: [\u26a0\ufe0fNot yet implemented] Works with processes.

  6. \n
\n\n

\ud83d\udcc4 More information about pipewire and it's API's:

\n\n
    \n
  • \ud83c\udfb5 Asyncio https://docs.python.org/3/library/asyncio-subprocess.html
  • \n
  • \ud83c\udfb5 Pipewire APIs https://www.linuxfromscratch.org/blfs/view/cvs/multimedia/pipewire.html
  • \n
  • \ud83c\udfb5 APIs example https://fedoraproject.org/wiki/QA:Testcase_PipeWire_PipeWire_CLI
  • \n
\n\n

Developed with \u2764\ufe0f by Pablo Diaz & Anna Absi

\n\n

Install via

\n\n
pip3 install pipewire_python # or pip\n
\n\n

Tutorial

\n\n
from pipewire_python.controller import Controller\n\n# PLAYBACK: normal way\naudio_controller = Controller(verbose=True)\naudio_controller.set_config(rate=384000,\n                            channels=2,\n                            _format='f64',\n                            volume=0.98,\n                            quality=4,\n                            # Debug\n                            verbose=True)\naudio_controller.playback(audio_filename='docs/beers.wav',\n                          # Debug\n                          verbose=True)\n\n# RECORD: normal way\naudio_controller = Controller(verbose=True)\naudio_controller.record(audio_filename='docs/5sec_record.wav',\n                        timeout_seconds=5,\n                        # Debug\n                        verbose=True)\n
\n"}, "pipewire_python.controller": {"fullname": "pipewire_python.controller", "modulename": "pipewire_python.controller", "qualname": "", "type": "module", "doc": "

Documentation

\n\n

In the next pages you'll see documentation of each python component\ncontroller.py.

\n"}, "pipewire_python.controller.Controller": {"fullname": "pipewire_python.controller.Controller", "modulename": "pipewire_python.controller", "qualname": "Controller", "type": "class", "doc": "

Class that controls pipewire command line interface\nwith shell commands, handling outputs, loading default\nconfigs and more.

\n"}, "pipewire_python.controller.Controller.__init__": {"fullname": "pipewire_python.controller.Controller.__init__", "modulename": "pipewire_python.controller", "qualname": "Controller.__init__", "type": "function", "doc": "

This constructor load default configs from OS executing\nthe following pipewire command

\n\n
#!/bin/bash\n# Get defaults from output of:\npw-cat -h\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_version": {"fullname": "pipewire_python.controller.Controller.get_version", "modulename": "pipewire_python.controller", "qualname": "Controller.get_version", "type": "function", "doc": "

Get version of pipewire installed on OS by executing the following\ncode:

\n\n
#!/bin/bash\npw-cli --version\n
\n\n
Args
\n\n
    \n
  • verbose (bool) : True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • versions (list) : Versions of pipewire compiled
  • \n
\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.verbose": {"fullname": "pipewire_python.controller.Controller.verbose", "modulename": "pipewire_python.controller", "qualname": "Controller.verbose", "type": "function", "doc": "

Get full log of pipewire stream status with the command pw-cat

\n\n

An example of pw-cli usage is the code below:

\n\n
#!/bin/bash\n# For example\npw-cat --playback beers.wav --verbose\n
\n\n

that will generate an output like this:

\n\n
opened file "beers.wav" format 00010002 channels:2 rate:44100\nusing default channel map: FL,FR\nrate=44100 channels=2 fmt=s16 samplesize=2 stride=4 latency=4410 (0.100s)\nconnecting playback stream; target_id=4294967295\nstream state changed unconnected -> connecting\nstream param change: id=2\nstream properties:\n    media.type = "Audio"\n    ...\nnow=0 rate=0/0 ticks=0 delay=0 queued=0\nremote 0 is named "pipewire-0"\ncore done\nstream state changed connecting -> paused\nstream param change: id=2\n...\nstream param change: id=15\nstream param change: id=15\nnow=13465394419270 rate=1/48000 ticks=35840 delay=512 queued=0\nnow=13466525228363 rate=1/48000 ticks=90112 delay=512 queued=0\n...\nstream drained\nstream state changed streaming -> paused\nstream param change: id=4\nstream state changed paused -> unconnected\nstream param change: id=4\n
\n", "parameters": ["self", "status"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_config": {"fullname": "pipewire_python.controller.Controller.get_config", "modulename": "pipewire_python.controller", "qualname": "Controller.get_config", "type": "function", "doc": "

Return config dictionary with default or setup variables, remember that\nthis object changes only on python-side. Is not updated on real time,\nFor real-time, please create and destroy the class.

\n\n
Args
\n\n
    \n
  • Nothing
  • \n
\n\n
Returns
\n\n
\n
    \n
  • _pipewire_configs (dict) : dictionary with config values
  • \n
\n
\n", "parameters": ["self"], "funcdef": "def"}, "pipewire_python.controller.Controller.set_config": {"fullname": "pipewire_python.controller.Controller.set_config", "modulename": "pipewire_python.controller", "qualname": "Controller.set_config", "type": "function", "doc": "

Method that get args as variables and set them\nto the json parameter of the class _pipewire_configs,\nthen you can use in other method, such as playback(...) or\nrecord(...). This method verifies values to avoid wrong\nsettings.

\n\n
Args
\n\n
    \n
  • media_type : Set media type
  • \n
  • media_category : Set media category
  • \n
  • media_role : Set media role
  • \n
  • target : Set node target
  • \n
  • latency : Set node latency *example=100ms
  • \n
  • rate : Set sample rate [8000,11025,16000,22050,44100,48000,88200,96000,176400,192000,352800,384000]
  • \n
  • channels : Numbers of channels [1,2]
  • \n
  • channels_map : [\"stereo\", \"surround-51\", \"FL,FR\", ...]
  • \n
  • _format : [\"u8\", \"s8\", \"s16\", \"s32\", \"f32\", \"f64\"]
  • \n
  • volume : Stream volume [0.000, 1.000]
  • \n
  • quality : Resampler quality [0, 15]
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • Nothing
  • \n
\n
\n\n
More
\n\n
\n

Check all links listed at the beginning of this page

\n
\n", "parameters": ["self", "media_type", "media_category", "media_role", "target", "latency", "rate", "channels", "channels_map", "_format", "volume", "quality", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.load_list_targets": {"fullname": "pipewire_python.controller.Controller.load_list_targets", "modulename": "pipewire_python.controller", "qualname": "Controller.load_list_targets", "type": "function", "doc": "

Returns a list of targets to playback or record. Then you can use\nthe output to select a device to playback or record.

\n", "parameters": ["self", "mode", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.get_list_targets": {"fullname": "pipewire_python.controller.Controller.get_list_targets", "modulename": "pipewire_python.controller", "qualname": "Controller.get_list_targets", "type": "function", "doc": "

Returns a list of targets to playback or record. Then you can use\nthe output to select a device to playback or record.

\n\n
Returns
\n\n
\n
    \n
  • _pipewire_list_targets
  • \n
\n
\n\n

Examples:

\n\n
>>> Controller().get_list_targets()\n{\n"list_playblack": {\n    "86": {\n    "description": "Starship/Matisse HD Audio Controller Pro",\n    "prior": "936"\n    },\n    "_list_nodes": [\n    "86"\n    ],\n    "_node_default": [\n    "86"\n    ],\n    "_alsa_node": [\n    "alsa_output.pci-0000_0a_00.4.pro-output-0"\n    ]\n},\n"list_record": {\n    "86": {\n    "description": "Starship/Matisse HD Audio Controller Pro",\n    "prior": "936"\n    },\n    "_list_nodes": [\n    "86"\n    ],\n    "_node_default": [\n    "86"\n    ],\n    "_alsa_node": [\n    "alsa_output.pci-0000_0a_00.4.pro-output-0"\n    ]\n}\n}\n
\n", "parameters": ["self", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.playback": {"fullname": "pipewire_python.controller.Controller.playback", "modulename": "pipewire_python.controller", "qualname": "Controller.playback", "type": "function", "doc": "

Execute pipewire command to play an audio file with the following\ncommand:

\n\n
#!/bin/bash\npw-cat --playback {audio_filename} + {configs}\n# configs are a concatenated params\n
\n\n
Args
\n\n
    \n
  • audio_filename (str): Path of the file to be played. *default='myplayback.wav'
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • stdout (str): Shell response to the command in stdout format
  • \n
  • stderr (str): Shell response response to the command in stderr format
  • \n
\n
\n", "parameters": ["self", "audio_filename", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.record": {"fullname": "pipewire_python.controller.Controller.record", "modulename": "pipewire_python.controller", "qualname": "Controller.record", "type": "function", "doc": "

Execute pipewire command to record an audio file, with a timeout of 5\nseconds with the following code and exiting the shell when tiomeout is over.

\n\n
#!/bin/bash\npw-cat --record {audio_filename}\n# timeout is managed by python3 (when signal CTRL+C is sended)\n
\n\n
Args
\n\n
    \n
  • audio_filename (str): Path of the file to be played. *default='myplayback.wav'
  • \n
  • verbose (bool): True enable debug logs. *default=False
  • \n
\n\n
Returns
\n\n
\n
    \n
  • stdout (str): Shell response to the command in stdout format
  • \n
  • stderr (str): Shell response response to the command in stderr format
  • \n
\n
\n", "parameters": ["self", "audio_filename", "timeout_seconds", "verbose"], "funcdef": "def"}, "pipewire_python.controller.Controller.clear_devices": {"fullname": "pipewire_python.controller.Controller.clear_devices", "modulename": "pipewire_python.controller", "qualname": "Controller.clear_devices", "type": "function", "doc": "

Function to stop process running under pipewire executed by\npython controller and with default process name of pw-cat, pw-play or pw-record.

\n\n
Args
\n\n
    \n
  • mode (str) : string to kill process under pw-cat, pw-play or pw-record.
  • \n
\n\n
Returns
\n\n
\n
    \n
  • stdoutdict (dict) : a dictionary with keys of mode.
  • \n
\n
\n\n

Example with pipewire:\n pw-cat process

\n", "parameters": ["self", "mode", "verbose"], "funcdef": "def"}}, "docInfo": {"pipewire_python": {"qualname": 0, "fullname": 1, "doc": 188}, "pipewire_python.controller": {"qualname": 0, "fullname": 2, "doc": 11}, "pipewire_python.controller.Controller": {"qualname": 1, "fullname": 3, "doc": 14}, "pipewire_python.controller.Controller.__init__": {"qualname": 2, "fullname": 4, "doc": 15}, "pipewire_python.controller.Controller.get_version": {"qualname": 2, "fullname": 4, "doc": 25}, "pipewire_python.controller.Controller.verbose": {"qualname": 2, "fullname": 4, "doc": 163}, "pipewire_python.controller.Controller.get_config": {"qualname": 2, "fullname": 4, "doc": 28}, "pipewire_python.controller.Controller.set_config": {"qualname": 2, "fullname": 4, "doc": 89}, "pipewire_python.controller.Controller.load_list_targets": {"qualname": 2, "fullname": 4, "doc": 11}, "pipewire_python.controller.Controller.get_list_targets": {"qualname": 2, "fullname": 4, "doc": 111}, "pipewire_python.controller.Controller.playback": {"qualname": 2, "fullname": 4, "doc": 48}, "pipewire_python.controller.Controller.record": {"qualname": 2, "fullname": 4, "doc": 57}, "pipewire_python.controller.Controller.clear_devices": {"qualname": 2, "fullname": 4, "doc": 42}}, "length": 13, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 11}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.__init__": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_version": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 12}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}}, "doc": {"root": {"0": {"0": {"0": {"0": {"docs": {}, "df": 0, "_": {"0": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "1": {"0": {"0": {"0": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 3.3166247903554}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 4}, "1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"4": {"6": {"5": {"3": {"9": {"4": {"4": {"1": {"9": {"2": {"7": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"5": {"2": {"5": {"2": {"2": {"8": {"3": {"6": {"3": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2, ",": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "2": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 2}}, "df": 2}, "3": {"5": {"8": {"4": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"4": {"0": {"0": {"0": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"pipewire_python": {"tf": 2.449489742783178}}, "df": 1}, "docs": {}, "df": 0}, "4": {"2": {"9": {"4": {"9": {"6": {"7": {"2": {"9": {"5": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 3}, "5": {"1": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}, "8": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"1": {"0": {"2": {"5": {"docs": {}, "df": 0, ",": {"1": {"6": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"2": {"2": {"0": {"5": {"0": {"docs": {}, "df": 0, ",": {"4": {"4": {"1": {"0": {"0": {"docs": {}, "df": 0, ",": {"4": {"8": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"8": {"8": {"2": {"0": {"0": {"docs": {}, "df": 0, ",": {"9": {"6": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"7": {"6": {"4": {"0": {"0": {"docs": {}, "df": 0, ",": {"1": {"9": {"2": {"0": {"0": {"0": {"docs": {}, "df": 0, ",": {"3": {"5": {"2": {"8": {"0": {"0": {"docs": {}, "df": 0, ",": {"3": {"8": {"4": {"0": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 2.449489742783178}}, "df": 1}, "docs": {}, "df": 0}, "9": {"0": {"1": {"1": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 3}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 5, "=": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "'": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "z": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"5": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}, "docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"3": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 2.449489742783178}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 8, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 2}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 2}}, "df": 1, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 2}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}, "docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.449489742783178}, "pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 4, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 2.6457513110645907}}, "df": 6}, "c": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 2}}, "g": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "x": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}}, "df": 1}, "k": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 4, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}}, "df": 2}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "=": {"1": {"0": {"0": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 1, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 3, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 2.23606797749979}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 5, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}}, "df": 1}}}}, "i": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1, "'": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 6}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 2.23606797749979}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 6}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 2}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "u": {"8": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "s": {"1": {"6": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "8": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 2.8284271247461903}}, "df": 1, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3.872983346207417}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2}}, "df": 1}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 2, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "t": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.7320508075688772}}, "df": 5, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 2.23606797749979}, "pipewire_python.controller": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 5}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}}, "df": 4}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": null}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 2}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 6}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {}, "df": 0, ":": {"2": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "_": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 3.1622776601683795}, "pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 3}}}, "i": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "+": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 2}}}, "p": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.7320508075688772}}, "df": 2, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "'": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}, "d": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.449489742783178}}, "df": 1}}, "f": {"3": {"2": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}}, ",": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.playback": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python": {"tf": 2.23606797749979}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.verbose": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 4}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"pipewire_python": {"tf": 2}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"pipewire_python.controller.Controller.playback": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.record": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python": {"tf": 1.7320508075688772}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.record": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1.4142135623730951}}, "df": 6}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.get_version": {"tf": 1}, "pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.set_config": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}, "pipewire_python.controller.Controller.playback": {"tf": 1}, "pipewire_python.controller.Controller.record": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 8}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 2}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 3, ":": {"4": {"4": {"1": {"0": {"0": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python": {"tf": 1.4142135623730951}}, "df": 1}}}}, "w": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "/": {"3": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller": {"tf": 1}, "pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.verbose": {"tf": 1}, "pipewire_python.controller.Controller.load_list_targets": {"tf": 1}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 1.7320508075688772}}, "df": 5}}}}}, "s": {"docs": {"pipewire_python.controller.Controller.__init__": {"tf": 1}, "pipewire_python.controller.Controller.get_version": {"tf": 1}}, "df": 2}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"pipewire_python.controller.Controller.record": {"tf": 1}}, "df": 1}}}}, "_": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"pipewire_python.controller.Controller.get_config": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"pipewire_python.controller.Controller.get_list_targets": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"pipewire_python": {"tf": 1}, "pipewire_python.controller.Controller.set_config": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 2.449489742783178}, "pipewire_python.controller.Controller.get_list_targets": {"tf": 6.928203230275509}}, "df": 2}}, "e": {"docs": {}, "df": 0, "u": {"docs": {"pipewire_python.controller.Controller.verbose": {"tf": 1.7320508075688772}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "'": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller": {"tf": 1}}, "df": 1}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"pipewire_python.controller.Controller.clear_devices": {"tf": 1}}, "df": 1}}}}}}, "pipeline": ["trimmer", "stopWordFilter", "stemmer"], "_isPrebuiltIndex": true} \ No newline at end of file