videosdk-plugins-resemble 0.0.31__tar.gz → 0.0.32__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of videosdk-plugins-resemble might be problematic. Click here for more details.

@@ -2,13 +2,12 @@ myenv/
2
2
  venv/
3
3
  env/
4
4
  __pycache__/
5
-
5
+ .venv/
6
6
  .env
7
7
  .env.local
8
8
  test_env/
9
9
  dist/
10
10
  .DS_Store
11
-
12
11
  node_modules/
13
12
  credentials.json
14
13
  .Python
@@ -16,3 +15,5 @@ build/
16
15
  eggs/
17
16
  sdist/
18
17
  wheels/
18
+ docs/
19
+ agent-sdk-reference/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: videosdk-plugins-resemble
3
- Version: 0.0.31
3
+ Version: 0.0.32
4
4
  Summary: VideoSDK Agent Framework plugin for Resemble
5
5
  Author: videosdk
6
6
  License-Expression: Apache-2.0
@@ -12,7 +12,7 @@ Classifier: Topic :: Multimedia :: Sound/Audio
12
12
  Classifier: Topic :: Multimedia :: Video
13
13
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
14
14
  Requires-Python: >=3.11
15
- Requires-Dist: videosdk-agents>=0.0.31
15
+ Requires-Dist: videosdk-agents>=0.0.32
16
16
  Description-Content-Type: text/markdown
17
17
 
18
18
  # VideoSDK Resemble Plugin
@@ -20,7 +20,7 @@ classifiers = [
20
20
  "Topic :: Multimedia :: Video",
21
21
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
22
  ]
23
- dependencies = ["videosdk-agents>=0.0.31"]
23
+ dependencies = ["videosdk-agents>=0.0.32"]
24
24
 
25
25
  [tool.hatch.version]
26
26
  path = "videosdk/plugins/resemble/version.py"
@@ -24,6 +24,14 @@ class ResembleTTS(TTS):
24
24
  sample_rate: int = DEFAULT_SAMPLE_RATE,
25
25
  precision: str = DEFAULT_PRECISION,
26
26
  ) -> None:
27
+ """Initialize the Resemble TTS plugin.
28
+
29
+ Args:
30
+ api_key (Optional[str], optional): Resemble API key. Defaults to None.
31
+ voice_uuid (str): The voice UUID to use for the TTS plugin. Defaults to "55592656".
32
+ sample_rate (int): The sample rate to use for the TTS plugin. Defaults to 22050.
33
+ precision (str): The precision to use for the TTS plugin. Defaults to "PCM_16".
34
+ """
27
35
  super().__init__(sample_rate=sample_rate, num_channels=1)
28
36
 
29
37
  self.api_key = api_key or os.getenv("RESEMBLE_API_KEY")
@@ -0,0 +1 @@
1
+ __version__ = "0.0.32"
@@ -1 +0,0 @@
1
- __version__ = "0.0.31"