debug
Browse files
App/Generate/database/DescriptAPI.py
CHANGED
@@ -161,7 +161,7 @@ class Speak:
|
|
161 |
filename = str(uuid.uuid4()) + ".wav"
|
162 |
os.makedirs(self.dir, exist_ok=True)
|
163 |
save_path = os.path.join(self.dir, filename)
|
164 |
-
|
165 |
command = f"aria2c {url} -o {save_path}"
|
166 |
process = await asyncio.create_subprocess_shell(
|
167 |
command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
|
|
|
161 |
filename = str(uuid.uuid4()) + ".wav"
|
162 |
os.makedirs(self.dir, exist_ok=True)
|
163 |
save_path = os.path.join(self.dir, filename)
|
164 |
+
print(url)
|
165 |
command = f"aria2c {url} -o {save_path}"
|
166 |
process = await asyncio.create_subprocess_shell(
|
167 |
command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
|