bugfix
This commit is contained in:
parent
e84780583a
commit
14b7eb823a
114
app/f5tts.py
114
app/f5tts.py
@ -1,10 +1,9 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import argparse
|
import asyncio
|
||||||
import codecs
|
import codecs
|
||||||
|
from traceback import format_exc
|
||||||
import re
|
import re
|
||||||
from pathlib import Path
|
|
||||||
from functools import partial
|
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import soundfile as sf
|
import soundfile as sf
|
||||||
@ -82,50 +81,51 @@ class F5TTS:
|
|||||||
|
|
||||||
# load models
|
# load models
|
||||||
ckpt_file = ''
|
ckpt_file = ''
|
||||||
if self.config.modelname == "F5-TTS":
|
model_cls = DiT
|
||||||
model_cls = DiT
|
model_cfg = dict(dim=1024, depth=22, heads=16,
|
||||||
model_cfg = dict(dim=1024, depth=22, heads=16,
|
ff_mult=2, text_dim=512, conv_layers=4)
|
||||||
ff_mult=2, text_dim=512, conv_layers=4)
|
ckpt_file = self.config.ckpts_path
|
||||||
if self.config.vocoder_name == "vocos":
|
|
||||||
repo_name = "F5-TTS"
|
|
||||||
exp_name = "F5TTS_Base"
|
|
||||||
ckpt_step = 1200000
|
|
||||||
ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
|
|
||||||
# ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
|
|
||||||
elif self.config.vocoder_name == "bigvgan":
|
|
||||||
repo_name = "F5-TTS"
|
|
||||||
exp_name = "F5TTS_Base_bigvgan"
|
|
||||||
ckpt_step = 1250000
|
|
||||||
ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.pt"))
|
|
||||||
|
|
||||||
elif self.config.modelname == "E2-TTS":
|
|
||||||
model_cls = UNetT
|
|
||||||
model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
|
|
||||||
if ckpt_file == "":
|
|
||||||
repo_name = "E2-TTS"
|
|
||||||
exp_name = "E2TTS_Base"
|
|
||||||
ckpt_step = 1200000
|
|
||||||
ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
|
|
||||||
|
|
||||||
self.model = load_model(model_cls, model_cfg, ckpt_file,
|
self.model = load_model(model_cls, model_cfg, ckpt_file,
|
||||||
mel_spec_type=self.config.vocoder_name,
|
mel_spec_type=self.config.vocoder_name,
|
||||||
vocab_file=self.config.vocab_file)
|
vocab_file=self.config.vocab_file)
|
||||||
self.model = self.model.to(self.config.device)
|
self.model = self.model.to(self.config.device)
|
||||||
|
self.lock = asyncio.Lock()
|
||||||
|
|
||||||
def f5tts_infer(self, ref_audio, ref_text, gen_text):
|
def f5tts_infer(self, ref_audio, ref_text, gen_text, speed_factor):
|
||||||
audio, final_sample_rate, spectragram = \
|
audio, final_sample_rate, spectragram = \
|
||||||
infer_process(ref_audio,
|
infer_process(ref_audio,
|
||||||
ref_text,
|
ref_text,
|
||||||
gen_text,
|
gen_text,
|
||||||
self.model,
|
self.model,
|
||||||
self.vocoder,
|
self.vocoder,
|
||||||
mel_spec_type=self.config.vocoder_name,
|
mel_spec_type=self.config.vocoder_name,
|
||||||
speed=self.config.speed or speed)
|
speed=self.config.speed or speed)
|
||||||
return {
|
if audio is not None:
|
||||||
'audio':audio,
|
audio = self.speed_convert(audio, speed_factor)
|
||||||
'sample_rate':final_sample_rate,
|
else:
|
||||||
'spectragram':spectragram
|
return None
|
||||||
}
|
debug(f'audio shape {audio.shape}, {gen_text=}')
|
||||||
|
return {
|
||||||
|
'text': gen_text,
|
||||||
|
'audio':audio,
|
||||||
|
'sample_rate':final_sample_rate,
|
||||||
|
'spectragram':spectragram
|
||||||
|
}
|
||||||
|
|
||||||
|
def speed_convert(self, output_audio_np, speed_factor):
|
||||||
|
original_len = len(output_audio_np)
|
||||||
|
speed_factor = max(0.1, min(speed_factor, 5.0))
|
||||||
|
target_len = int(
|
||||||
|
original_len / speed_factor
|
||||||
|
) # Target length based on speed_factor
|
||||||
|
if (
|
||||||
|
target_len != original_len and target_len > 0
|
||||||
|
): # Only interpolate if length changes and is valid
|
||||||
|
x_original = np.arange(original_len)
|
||||||
|
x_resampled = np.linspace(0, original_len - 1, target_len)
|
||||||
|
output_audio_np = np.interp(x_resampled, x_original, output_audio_np)
|
||||||
|
output_audio_np = output_audio_np.astype(np.float32)
|
||||||
|
return output_audio_np
|
||||||
|
|
||||||
def get_speakers(self):
|
def get_speakers(self):
|
||||||
t = [{'value':s, 'text':s} for s in self.speakers.keys() ]
|
t = [{'value':s, 'text':s} for s in self.speakers.keys() ]
|
||||||
@ -162,14 +162,14 @@ class F5TTS:
|
|||||||
ret.append({'text':gen_text, 'ref_audio':ref_audio, 'ref_text':ref_text})
|
ret.append({'text':gen_text, 'ref_audio':ref_audio, 'ref_text':ref_text})
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
async def infer_stream(self, prompt, speaker):
|
async def infer_stream(self, prompt, speaker, speed_factor=1.0):
|
||||||
async for a in self._inference_stream(prompt, speaker):
|
async for a in self._inference_stream(prompt, speaker, speed_factor=speed_factor):
|
||||||
wavdata = a['audio']
|
wavdata = a['audio']
|
||||||
samplerate = a['sample_rate']
|
samplerate = a['sample_rate']
|
||||||
b = await async_write_wav_buffer(wavdata, 1, samplerate)
|
b = await async_write_wav_buffer(wavdata, 1, samplerate)
|
||||||
yield b
|
yield b
|
||||||
|
|
||||||
async def _inference_stream(self, prompt, speaker):
|
async def _inference_stream(self, prompt, speaker, speed_factor=1.0):
|
||||||
text_gen = prompt
|
text_gen = prompt
|
||||||
chunks = await self.split_text(prompt, speaker)
|
chunks = await self.split_text(prompt, speaker)
|
||||||
for chunk in chunks:
|
for chunk in chunks:
|
||||||
@ -178,10 +178,11 @@ class F5TTS:
|
|||||||
ref_text = chunk['ref_text']
|
ref_text = chunk['ref_text']
|
||||||
infer = awaitify(self.f5tts_infer)
|
infer = awaitify(self.f5tts_infer)
|
||||||
try:
|
try:
|
||||||
d = await infer(ref_audio, ref_text, gen_text)
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
yield d
|
if d is not None:
|
||||||
|
yield d
|
||||||
except:
|
except:
|
||||||
pass
|
debug(f'{gen_text=} inference error\n{format_exc()}')
|
||||||
|
|
||||||
def setup_voices(self):
|
def setup_voices(self):
|
||||||
config = getConfig()
|
config = getConfig()
|
||||||
@ -221,18 +222,26 @@ class F5TTS:
|
|||||||
f.write(json.dumps(self.speakers, indent=4))
|
f.write(json.dumps(self.speakers, indent=4))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
async def _inference(self, prompt, speaker):
|
async def _inference(self, prompt, speaker, speed_factor=1.0):
|
||||||
generated_audio_segments = []
|
generated_audio_segments = []
|
||||||
remove_silence = self.config.remove_silence or False
|
remove_silence = self.config.remove_silence or False
|
||||||
final_sample_rate = 24000
|
final_sample_rate = 16000
|
||||||
async for d in self._inference_stream(prompt, speaker):
|
async for d in self._inference_stream(prompt,
|
||||||
audio = d['audio']
|
speaker,
|
||||||
|
speed_factor=speed_factor):
|
||||||
|
audio = d.get('audio', None)
|
||||||
|
if audio is None:
|
||||||
|
debug(f'audio is none, {d=}')
|
||||||
|
continue
|
||||||
final_sample_rate = d['sample_rate']
|
final_sample_rate = d['sample_rate']
|
||||||
generated_audio_segments.append(audio)
|
generated_audio_segments.append(audio)
|
||||||
|
|
||||||
if generated_audio_segments:
|
if generated_audio_segments:
|
||||||
final_wave = np.concatenate(generated_audio_segments)
|
final_wave = np.concatenate(generated_audio_segments)
|
||||||
|
debug(f'{prompt=}, {final_sample_rate=}')
|
||||||
return await async_write_wav_buffer(final_wave, 1, final_sample_rate)
|
return await async_write_wav_buffer(final_wave, 1, final_sample_rate)
|
||||||
|
else:
|
||||||
|
debug(f'{prompt=} not audio generated')
|
||||||
|
|
||||||
def UiError(title="出错", message="出错啦", timeout=5):
|
def UiError(title="出错", message="出错啦", timeout=5):
|
||||||
return {
|
return {
|
||||||
@ -275,6 +284,7 @@ def init():
|
|||||||
g = ServerEnv()
|
g = ServerEnv()
|
||||||
f5 = F5TTS()
|
f5 = F5TTS()
|
||||||
g.infer_stream = f5.infer_stream
|
g.infer_stream = f5.infer_stream
|
||||||
|
g.inference_stream = f5._inference_stream
|
||||||
g.get_speakers = f5.get_speakers
|
g.get_speakers = f5.get_speakers
|
||||||
g.infer = f5._inference
|
g.infer = f5._inference
|
||||||
g.test1 = awaitify(test1)
|
g.test1 = awaitify(test1)
|
||||||
|
@ -10,6 +10,8 @@
|
|||||||
},
|
},
|
||||||
"sample_rate":16000,
|
"sample_rate":16000,
|
||||||
"vocab_file":"",
|
"vocab_file":"",
|
||||||
|
"ckpts_path_bak":"/share/models/SWivid/F5-TTS/F5TTS_Base/model_1200000.pt",
|
||||||
|
"ckpts_path":"/share/models/SWivid/F5-TTS/F5TTS_v1_Base/model_1250000.safetensors",
|
||||||
"speakers_file":"$[workdir]$/conf/speakers.json",
|
"speakers_file":"$[workdir]$/conf/speakers.json",
|
||||||
"vocoder_name":"vocos",
|
"vocoder_name":"vocos",
|
||||||
"vocoder_local_path":"/share/models/charactr/vocos-mel-24khz",
|
"vocoder_local_path":"/share/models/charactr/vocos-mel-24khz",
|
||||||
@ -47,7 +49,7 @@
|
|||||||
"startswiths":[
|
"startswiths":[
|
||||||
{
|
{
|
||||||
"leading":"/idfile",
|
"leading":"/idfile",
|
||||||
"registerfunction":"download_path"
|
"registerfunction":"idfile"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"processors":[
|
"processors":[
|
||||||
|
@ -1,38 +1,6 @@
|
|||||||
{
|
{
|
||||||
"test1": {
|
"ymq": {
|
||||||
"ref_text": "\u6d4b\u8bd5\u4e00\u4e0b\u800c\u5df2",
|
"ref_text": "\u8f7b\u91cf\u5e94\u7528\u670d\u52a1\u5668\u5907\u6848\u6761\u4ef6\uff1a\u8d2d\u4e70\u65f6\u957f\u57283\u4e2a\u6708\u53ca\u4ee5\u4e0a",
|
||||||
"ref_audio": "/data/f5tts/files/2/153/195/20/record.wav"
|
"ref_audio": "/data/ymq/py/f5tts/files/87/103/66/49/record.wav"
|
||||||
},
|
|
||||||
"asd": {
|
|
||||||
"ref_text": "",
|
|
||||||
"ref_audio": "/data/f5tts/files/79/189/134/0/record.wav"
|
|
||||||
},
|
|
||||||
"mmm": {
|
|
||||||
"ref_text": "\u8868\u683c\u4e2d\u662f\u4e4b\u524d\u63d0\u4ea4\u4e86\u7533\u8bf7\u8868\u4f46\u662f\u9057\u6f0f\u7684\u4e13\u5bb6\u53ca\u6210\u5458\u5355\u4f4d\u540d\u5355\uff0c\u8fd1\u671f\u4f1a\u5236\u4f5c\u8865\u53d1\uff0c\u8bf7\u76f8\u5173\u8001\u5e08\u786e\u8ba4\u3002",
|
|
||||||
"ref_audio": "/data/f5tts/files/18/16/195/81/record.wav"
|
|
||||||
},
|
|
||||||
"asd2": {
|
|
||||||
"ref_text": "",
|
|
||||||
"ref_audio": "/data/f5tts/files/71/191/148/3/record.wav"
|
|
||||||
},
|
|
||||||
"zhc": {
|
|
||||||
"ref_text": "\u4eca\u5929\u6211\u4e0b\u697c\u53bb\u5403\u996d\uff0c\u53d1\u73b0\u4e00\u5bb6\u597d\u5403\u7684\u9910\u5385\uff0c\u5473\u9053\u975e\u5e38\u7f8e\u5473",
|
|
||||||
"ref_audio": "/data/f5tts/files/73/97/53/45/record.wav"
|
|
||||||
},
|
|
||||||
"\u8463\u6d01": {
|
|
||||||
"ref_text": "\u53e6\u5916\u9700\u8981\u7533\u8bf7\u7684\u8001\u5e08\u8bf7\u53ca\u65f6\u63d0\u4ea4\u76d6\u7ae0\u7533\u8bf7\u8868\uff0c\u8c22\u8c22\u5927\u5bb6\u3002",
|
|
||||||
"ref_audio": "/data/f5tts/files/106/47/138/48/record.wav"
|
|
||||||
},
|
|
||||||
"\u6b4c\u5531\u8005": {
|
|
||||||
"ref_text": "\u4eca\u591c\u770b\u5230\u6708\u4eae\u5706\u5706\uff0c\u4eca\u591c\u7275\u7740\u7ec6\u624b\u4edf\u4edf\u3002",
|
|
||||||
"ref_audio": "/data/f5tts/files/32/41/191/74/record.wav"
|
|
||||||
},
|
|
||||||
"\u8bf4\u5531": {
|
|
||||||
"ref_text": "\u6765\u7535\u7eaf\u6b63\u7684\u5473\u513f\r\n\u4e00\u4e5d\u516d\u516d\u5ea7\u5934\u5e02\r\n\u5076\u5c14\u4e5f\u6709\u574f\u4e60\u60ef\r\n\u6211\u7231\u62ff\u751f\u547d\u505a\u6295\u63b7\r\n\u6f2b\u6b65\u5728\u5915\u9633\u4e4b\u4e0b\r\n\u6211\u5438\u6536\u65e5\u6708\u7cbe\u6c14",
|
|
||||||
"ref_audio": "/data/f5tts/files/166/46/120/67/record.wav"
|
|
||||||
},
|
|
||||||
"\u56db\u5ddd\u4eba": {
|
|
||||||
"ref_text": "\u4f60\u574f\u4e8b\u505a\u5c3d\uff0c\u4f60\u4e27\u5c3d\u5929\u826f\uff0c\u5c31\u50cf\u8fd9\u505a\u6210\u7684\u6728\u684c\uff0c\u51e0\u65f6\u8fd8\u80fd\u82b1\u5f00\u8428",
|
|
||||||
"ref_audio": "/data/f5tts/files/159/165/38/57/record.wav"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
647
logs/f5tts.log
647
logs/f5tts.log
@ -1,240 +1,407 @@
|
|||||||
2024-12-25 13:31:45.631[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/infer_stream'
|
2025-05-11 10:42:16.529[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:31:45.659[f5tts][debug][<string>:2]params_kw={'speaker': 'zhc', 'prompt': '如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例。\r\n\r\n\u3000\u3000[董洁]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费?\r\n\r\n\u3000\u3000[mmm]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力。\r\n更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费。', '_webbricks_': '1', 'width': '1286', 'height': '1015', '_is_mobile': '0'}
|
2025-05-11 10:42:16.534[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=163, details=(('Chinese', 'zh', 81, 1077.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:31:45.660[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
2025-05-11 10:42:16.535[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:31:45.661[f5tts][debug][/data/f5tts/app/f5tts.py:153]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 will be inference with speaker(zhc)..
|
2025-05-11 10:42:16.536[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:31:45.661[f5tts][debug][/data/f5tts/app/f5tts.py:153]
will be inference with speaker(zhc)..
|
2025-05-11 10:42:16.536[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153]
will be inference with speaker(zhc)..
|
2025-05-11 10:42:18.092[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (302592,), gen_text='ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址'
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153] [董洁]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.645[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (109312,), gen_text='SLB产品请按照绑定的ECS进行备案'
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153]
will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.651[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:59]/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153]
will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.688[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153] [mmm]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.689[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 3.1591928005218506, (4.5299530029296875e-05)
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153]
will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.961[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:31:45.662[f5tts][debug][/data/f5tts/app/f5tts.py:153]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.961[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav'}, args=[]
|
||||||
2024-12-25 13:31:45.663[f5tts][debug][/data/f5tts/app/f5tts.py:153] will be inference with speaker(zhc)..
|
2025-05-11 10:42:19.962[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:31:47.491[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/100/13/158/36/ckrUL2YksIHoygrrLlgeG.wav
|
2025-05-11 10:42:19.962[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav', filename='DDQ2SYESDSWJBpcBJ_f8A.wav', download=False
|
||||||
2024-12-25 13:31:47.544[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 10:42:19.962[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0011990070343017578, (6.556510925292969e-05)
|
||||||
2024-12-25 13:31:47.544[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/100/13/158/36/ckrUL2YksIHoygrrLlgeG.wav
|
2025-05-11 10:42:20.086[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:31:47.545[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0009741783142089844, (7.748603820800781e-05)
|
2025-05-11 10:42:20.086[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav'}, args=[]
|
||||||
2024-12-25 13:31:49.269[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/50/66/5/92/qeebYJA0N6zLgPt21_Yez.wav
|
2025-05-11 10:42:20.087[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:31:51.020[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/166/181/76/58/kNOwEW6eSWvibc8Tcqrz5.wav
|
2025-05-11 10:42:20.087[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav', filename='DDQ2SYESDSWJBpcBJ_f8A.wav', download=False
|
||||||
2024-12-25 13:31:54.602[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/178/137/81/83/U8nermgpS4Wj8RyRbRJNK.wav
|
2025-05-11 10:42:20.087[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.001295328140258789, (4.076957702636719e-05)
|
||||||
2024-12-25 13:31:54.627[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/infer_stream cost 8.995679140090942, (6.389617919921875e-05)
|
2025-05-11 10:42:20.506[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:32:00.316[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 10:42:20.507[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav'}, args=[]
|
||||||
2024-12-25 13:32:00.317[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/50/66/5/92/qeebYJA0N6zLgPt21_Yez.wav
|
2025-05-11 10:42:20.508[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:32:00.317[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007762908935546875, (4.601478576660156e-05)
|
2025-05-11 10:42:20.508[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav', filename='DDQ2SYESDSWJBpcBJ_f8A.wav', download=False
|
||||||
2024-12-25 13:32:06.196[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 10:42:20.508[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0013272762298583984, (4.4345855712890625e-05)
|
||||||
2024-12-25 13:32:06.197[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/166/181/76/58/kNOwEW6eSWvibc8Tcqrz5.wav
|
2025-05-11 10:42:20.644[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:32:06.197[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006816387176513672, (4.839897155761719e-05)
|
2025-05-11 10:42:20.645[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav'}, args=[]
|
||||||
2024-12-25 13:32:13.849[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 10:42:20.646[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav
|
||||||
2024-12-25 13:32:13.850[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/178/137/81/83/U8nermgpS4Wj8RyRbRJNK.wav
|
2025-05-11 10:42:20.646[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/15/177/114/55/DDQ2SYESDSWJBpcBJ_f8A.wav', filename='DDQ2SYESDSWJBpcBJ_f8A.wav', download=False
|
||||||
2024-12-25 13:32:13.850[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006368160247802734, (4.7206878662109375e-05)
|
2025-05-11 10:42:20.646[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0013163089752197266, (4.1484832763671875e-05)
|
||||||
2024-12-25 13:39:46.454[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/'
|
2025-05-11 12:10:18.574[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/tts_stream.ui'
|
||||||
2024-12-25 13:39:46.462[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access / cost 0.008327007293701172, (6.461143493652344e-05)
|
2025-05-11 12:10:18.583[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /tts_stream.ui cost 0.008757591247558594, (9.775161743164062e-05)
|
||||||
2024-12-25 13:39:46.486[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/css/myapp.css'
|
2025-05-11 12:10:18.777[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/get_speakers.dspy'
|
||||||
2024-12-25 13:39:46.488[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /css/myapp.css cost 0.0012793540954589844, (4.458427429199219e-05)
|
2025-05-11 12:10:18.779[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /get_speakers.dspy cost 0.0022211074829101562, (4.220008850097656e-05)
|
||||||
2024-12-25 13:39:46.488[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/bricks.js'
|
2025-05-11 12:41:37.449[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:39:46.495[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/bricks.js cost 0.006165742874145508, (3.0279159545898438e-05)
|
2025-05-11 12:41:37.454[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:39:47.703[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/xterm.js.map'
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:39:47.704[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/xterm.js.map cost 0.0008373260498046875, (3.719329833984375e-05)
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:39:47.728[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/tts.ui'
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:39:47.731[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /tts.ui cost 0.002407550811767578, (3.695487976074219e-05)
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:39:47.754[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/get_speakers.dspy'
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:39:47.755[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /get_speakers.dspy cost 0.0013670921325683594, (3.7670135498046875e-05)
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:40:35.693[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
2025-05-11 12:41:37.456[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:40:35.697[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
2025-05-11 12:41:37.457[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:40:35.699[f5tts][debug][/data/f5tts/app/f5tts.py:155]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 will be inference with speaker(zhc)..
|
2025-05-11 12:41:37.457[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:40:35.699[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:41:40.388[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (268544,), gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案'
|
||||||
2024-12-25 13:40:35.699[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:41:41.987[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (224256,), gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)'
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155] [董洁]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 will be inference with speaker(zhc)..
|
2025-05-11 12:41:43.546[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (198144,), gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)'
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:41:45.101[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (151040,), gen_text='跨账号使用服务码请先进行授权(查看详情)'
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:41:46.652[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (313088,), gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址'
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155] [mmm]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 will be inference with speaker(zhc)..
|
2025-05-11 12:41:48.217[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (109312,), gen_text='SLB产品请按照绑定的ECS进行备案'
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:41:48.227[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:234]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。', final_sample_rate=24000
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 will be inference with speaker(zhc)..
|
2025-05-11 12:41:48.228[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:59]/data/ymq/py/f5tts/files/tmp/170/192/79/37/t4r39NgPZK51V-mZtaKf0.wav
|
||||||
2024-12-25 13:40:35.700[f5tts][debug][/data/f5tts/app/f5tts.py:155] will be inference with speaker(zhc)..
|
2025-05-11 12:41:48.293[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/170/192/79/37/t4r39NgPZK51V-mZtaKf0.wav
|
||||||
2024-12-25 13:40:44.412[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/136/122/113/34/z56DMNnBFYhNY2RhF7GFS.wav
|
2025-05-11 12:41:48.294[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.844851016998291, (0.0002627372741699219)
|
||||||
2024-12-25 13:40:44.454[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.cn:443/f5tts/idfile?path=/tmp/136/122/113/34/z56DMNnBFYhNY2RhF7GFS.wav
|
2025-05-11 12:41:48.575[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:40:44.454[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/inference cost 8.760746240615845, (5.125999450683594e-05)
|
2025-05-11 12:41:48.577[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/170/192/79/37/t4r39NgPZK51V-mZtaKf0.wav'}, args=[]
|
||||||
2024-12-25 13:40:44.573[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 12:41:48.577[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/170/192/79/37/t4r39NgPZK51V-mZtaKf0.wav
|
||||||
2024-12-25 13:40:44.573[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/136/122/113/34/z56DMNnBFYhNY2RhF7GFS.wav
|
2025-05-11 12:41:48.577[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/170/192/79/37/t4r39NgPZK51V-mZtaKf0.wav', filename='t4r39NgPZK51V-mZtaKf0.wav', download=False
|
||||||
2024-12-25 13:40:44.574[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0008594989776611328, (4.7206878662109375e-05)
|
2025-05-11 12:41:48.577[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.00183868408203125, (0.0002734661102294922)
|
||||||
2024-12-25 13:52:10.714[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
2025-05-11 12:43:07.059[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:52:10.719[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
2025-05-11 12:43:07.064[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:52:10.721[f5tts][debug][/data/f5tts/app/f5tts.py:155]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.066[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.721[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.066[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.721[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.722[f5tts][debug][/data/f5tts/app/f5tts.py:155]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 will be inference with speaker(zhc)..
|
2025-05-11 12:43:07.067[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:153] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:52:10.723[f5tts][debug][/data/f5tts/app/f5tts.py:155] will be inference with speaker(zhc)..
|
2025-05-11 12:43:10.009[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (268544,), gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案'
|
||||||
2024-12-25 13:52:19.713[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/86/176/160/78/trL-6MgfmJyGbh2cXxANz.wav
|
2025-05-11 12:43:11.627[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (224256,), gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)'
|
||||||
2024-12-25 13:52:19.767[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.cn:443/f5tts/idfile?path=/tmp/86/176/160/78/trL-6MgfmJyGbh2cXxANz.wav
|
2025-05-11 12:43:13.198[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (198144,), gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)'
|
||||||
2024-12-25 13:52:19.768[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/inference cost 9.053251504898071, (7.557868957519531e-05)
|
2025-05-11 12:43:14.725[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (151040,), gen_text='跨账号使用服务码请先进行授权(查看详情)'
|
||||||
2024-12-25 13:52:19.890[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 12:43:16.233[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (313088,), gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址'
|
||||||
2024-12-25 13:52:19.891[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/86/176/160/78/trL-6MgfmJyGbh2cXxANz.wav
|
2025-05-11 12:43:17.864[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:103]audio shape (109312,), gen_text='SLB产品请按照绑定的ECS进行备案'
|
||||||
2024-12-25 13:52:19.892[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0009317398071289062, (5.793571472167969e-05)
|
2025-05-11 12:43:17.879[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:234]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。', final_sample_rate=24000
|
||||||
2024-12-25 13:52:49.874[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/tts_stream.ui'
|
2025-05-11 12:43:17.880[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:59]/data/ymq/py/f5tts/files/tmp/13/23/139/77/b_wC7O1Wqy7UbPYCWOJ58.wav
|
||||||
2024-12-25 13:52:49.878[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /tts_stream.ui cost 0.004235982894897461, (5.626678466796875e-05)
|
2025-05-11 12:43:17.960[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/13/23/139/77/b_wC7O1Wqy7UbPYCWOJ58.wav
|
||||||
2024-12-25 13:52:49.908[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/get_speakers.dspy'
|
2025-05-11 12:43:17.961[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.902157545089722, (0.0002601146697998047)
|
||||||
2024-12-25 13:52:49.910[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /get_speakers.dspy cost 0.00153350830078125, (4.57763671875e-05)
|
2025-05-11 12:43:18.192[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:53:01.739[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/infer_stream'
|
2025-05-11 12:43:18.194[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/13/23/139/77/b_wC7O1Wqy7UbPYCWOJ58.wav'}, args=[]
|
||||||
2024-12-25 13:53:01.769[f5tts][debug][<string>:2]params_kw={'speaker': 'zhc', 'prompt': '如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例。\r\n\r\n\u3000\u3000[[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费?\r\n\r\n\u3000\u3000[[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力。\r\n更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费。', '_webbricks_': '1', 'width': '1286', 'height': '1015', '_is_mobile': '0'}
|
2025-05-11 12:43:18.194[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/13/23/139/77/b_wC7O1Wqy7UbPYCWOJ58.wav
|
||||||
2024-12-25 13:53:01.769[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
2025-05-11 12:43:18.194[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/13/23/139/77/b_wC7O1Wqy7UbPYCWOJ58.wav', filename='b_wC7O1Wqy7UbPYCWOJ58.wav', download=False
|
||||||
2024-12-25 13:53:01.770[f5tts][debug][/data/f5tts/app/f5tts.py:155]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 will be inference with speaker(zhc)..
|
2025-05-11 12:43:18.194[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.002355337142944336, (0.0004451274871826172)
|
||||||
2024-12-25 13:53:01.770[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.992[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.997[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:66] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155]
will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.771[f5tts][debug][/data/f5tts/app/f5tts.py:155]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:01.772[f5tts][debug][/data/f5tts/app/f5tts.py:155] will be inference with speaker(zhc)..
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:03.523[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/10/109/70/89/5ljTKPc-TJx2rgSTHmIR6.wav
|
2025-05-11 13:27:58.999[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:03.585[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:27:59.000[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:03.586[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/10/109/70/89/5ljTKPc-TJx2rgSTHmIR6.wav
|
2025-05-11 13:28:09.712[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=None
|
||||||
2024-12-25 13:53:03.587[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0009875297546386719, (6.985664367675781e-05)
|
2025-05-11 13:28:09.714[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.721608400344849, (0.00026035308837890625)
|
||||||
2024-12-25 13:53:05.340[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/15/4/133/76/yGiKrhJCP-Nb_x-XnMApD.wav
|
2025-05-11 13:28:09.963[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:53:07.089[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/83/97/37/33/3oiMvJjVUHbHBCfDvn9pj.wav
|
2025-05-11 13:28:09.964[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': 'None'}, args=[]
|
||||||
2024-12-25 13:53:10.582[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/72/172/3/48/dLBvLa62gLndOKROIcQU-.wav
|
2025-05-11 13:28:09.965[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/None
|
||||||
2024-12-25 13:53:10.609[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/infer_stream cost 8.869414567947388, (4.458427429199219e-05)
|
2025-05-11 13:28:09.965[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/None', filename='None', download=False
|
||||||
2024-12-25 13:53:16.362[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:28:09.965[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0019428730010986328, (0.0004818439483642578)
|
||||||
2024-12-25 13:53:16.363[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/15/4/133/76/yGiKrhJCP-Nb_x-XnMApD.wav
|
2025-05-11 13:44:39.142[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:53:16.363[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0009305477142333984, (4.982948303222656e-05)
|
2025-05-11 13:44:39.147[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:66] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:53:22.248[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:44:39.149[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:22.249[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/83/97/37/33/3oiMvJjVUHbHBCfDvn9pj.wav
|
2025-05-11 13:44:39.149[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:22.249[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007755756378173828, (5.2928924560546875e-05)
|
2025-05-11 13:44:39.149[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:29.910[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:44:39.149[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:29.910[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/72/172/3/48/dLBvLa62gLndOKROIcQU-.wav
|
2025-05-11 13:44:39.150[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:53:29.911[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0008556842803955078, (5.078315734863281e-05)
|
2025-05-11 13:44:39.150[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.353[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/'
|
2025-05-11 13:44:39.150[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.363[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access / cost 0.009201526641845703, (7.915496826171875e-05)
|
2025-05-11 13:44:39.150[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.415[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/xterm.css'
|
2025-05-11 13:44:39.150[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.417[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access /bricks/3parties/xterm.css cost 0.002035379409790039, (5.6743621826171875e-05)
|
2025-05-11 13:44:49.860[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。' not audio generated
|
||||||
2024-12-25 13:57:13.463[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/video-js.css'
|
2025-05-11 13:44:49.927[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=None
|
||||||
2024-12-25 13:57:13.465[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access /bricks/3parties/video-js.css cost 0.0025320053100585938, (4.8160552978515625e-05)
|
2025-05-11 13:44:49.928[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.786148071289062, (0.00025463104248046875)
|
||||||
2024-12-25 13:57:13.500[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/css/bricks.css'
|
2025-05-11 13:44:50.184[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:57:13.502[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(42.194.192.163) None access /bricks/css/bricks.css cost 0.0015037059783935547, (4.696846008300781e-05)
|
2025-05-11 13:44:50.186[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': 'None'}, args=[]
|
||||||
2024-12-25 13:57:13.504[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/css/myapp.css'
|
2025-05-11 13:44:50.186[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/None
|
||||||
2024-12-25 13:57:13.505[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access /css/myapp.css cost 0.0007126331329345703, (4.57763671875e-05)
|
2025-05-11 13:44:50.186[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/None', filename='None', download=False
|
||||||
2024-12-25 13:57:13.514[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/marked.min.js'
|
2025-05-11 13:44:50.187[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.001967906951904297, (0.00043201446533203125)
|
||||||
2024-12-25 13:57:13.516[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(27.44.122.167) None access /bricks/3parties/marked.min.js cost 0.0022568702697753906, (4.649162292480469e-05)
|
2025-05-11 13:53:49.798[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:57:13.518[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/xterm.js'
|
2025-05-11 13:53:49.804[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:66] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:57:13.528[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/video.min.js'
|
2025-05-11 13:53:49.805[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.530[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(27.44.122.167) None access /bricks/3parties/xterm.js cost 0.011506319046020508, (4.029273986816406e-05)
|
2025-05-11 13:53:49.805[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.550[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/recorder.wav.min.js'
|
2025-05-11 13:53:49.805[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.551[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(14.152.91.244) None access /bricks/3parties/video.min.js cost 0.022145509719848633, (5.459785461425781e-05)
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.552[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/bricks.js'
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.556[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(42.194.192.163) None access /bricks/3parties/recorder.wav.min.js cost 0.0053098201751708984, (5.745887756347656e-05)
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.562[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access /bricks/bricks.js cost 0.00963449478149414, (5.0067901611328125e-05)
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.595[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/js/myapp.js'
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:13.597[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(129.204.118.204) None access /js/myapp.js cost 0.0014917850494384766, (4.4345855712890625e-05)
|
2025-05-11 13:53:49.806[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:154] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:42.760[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/infer_stream'
|
2025-05-11 13:53:52.644[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案' inference error
|
||||||
2024-12-25 13:57:42.788[f5tts][debug][<string>:2]params_kw={'speaker': 'zhc', 'prompt': '如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例。\r\n\r\n\u3000\u3000[[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费?\r\n\r\n\u3000\u3000[[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力。\r\n更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费。', '_webbricks_': '1', 'width': '1286', 'height': '1015', '_is_mobile': '0'}
|
2025-05-11 13:53:54.216[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)' inference error
|
||||||
2024-12-25 13:57:42.789[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
2025-05-11 13:53:54.220[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='' inference error
|
||||||
2024-12-25 13:57:42.791[f5tts][debug][/data/f5tts/app/f5tts.py:155]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:53:55.753[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:53:57.281[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='跨账号使用服务码请先进行授权(查看详情)' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:53:57.286[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:53:58.796[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.354[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='SLB产品请按照绑定的ECS进行备案' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.361[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:181]gen_text='' inference error
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155] [[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.361[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:240]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。' not audio generated
|
||||||
2024-12-25 13:57:42.792[f5tts][debug][/data/f5tts/app/f5tts.py:155]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.379[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=None
|
||||||
2024-12-25 13:57:42.793[f5tts][debug][/data/f5tts/app/f5tts.py:155]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.380[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.581000804901123, (0.00027489662170410156)
|
||||||
2024-12-25 13:57:42.793[f5tts][debug][/data/f5tts/app/f5tts.py:155] inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:54:00.665[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
2024-12-25 13:57:44.672[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/64/28/136/25/5yohXK_j_a5Sv4COMWYYh.wav
|
2025-05-11 13:54:00.666[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': 'None'}, args=[]
|
||||||
2024-12-25 13:57:44.725[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:54:00.667[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/None
|
||||||
2024-12-25 13:57:44.726[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/64/28/136/25/5yohXK_j_a5Sv4COMWYYh.wav
|
2025-05-11 13:54:00.667[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/None', filename='None', download=False
|
||||||
2024-12-25 13:57:44.726[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0012254714965820312, (5.936622619628906e-05)
|
2025-05-11 13:54:00.667[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.001955747604370117, (0.0002315044403076172)
|
||||||
2024-12-25 13:57:46.459[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/50/21/125/70/540x3QaxRK-Wl1-dxsrxR.wav
|
2025-05-11 13:55:43.257[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
2024-12-25 13:57:48.230[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/85/40/82/31/zLPl0cKb7EOhgGqODFEm2.wav
|
2025-05-11 13:55:43.262[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:67] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
2024-12-25 13:57:51.756[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/100/185/33/44/3NNPuk5tsUf_gsKTuE5_C.wav
|
2025-05-11 13:55:43.264[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:51.781[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/infer_stream cost 9.020841836929321, (5.1021575927734375e-05)
|
2025-05-11 13:55:43.264[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:57.502[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:55:43.264[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:57.503[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/50/21/125/70/540x3QaxRK-Wl1-dxsrxR.wav
|
2025-05-11 13:55:43.264[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:57:57.503[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007576942443847656, (5.221366882324219e-05)
|
2025-05-11 13:55:43.264[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:58:03.404[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:55:43.265[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:58:03.404[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/85/40/82/31/zLPl0cKb7EOhgGqODFEm2.wav
|
2025-05-11 13:55:43.265[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:58:03.405[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007448196411132812, (4.673004150390625e-05)
|
2025-05-11 13:55:43.265[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:58:11.061[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
2025-05-11 13:55:43.265[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:155] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
2024-12-25 13:58:11.062[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/100/185/33/44/3NNPuk5tsUf_gsKTuE5_C.wav
|
2025-05-11 13:55:46.155[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案' inference error
|
||||||
2024-12-25 13:58:11.062[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006740093231201172, (4.5299530029296875e-05)
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:00:51.181[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/infer_stream'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:00:51.217[f5tts][debug][<string>:2]params_kw={'speaker': 'zhc', 'prompt': '如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例。\r\n\r\n\u3000\u3000[[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费?\r\n\r\n\u3000\u3000[[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力。\r\n更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费。', '_webbricks_': '1', 'width': '1286', 'height': '1015', '_is_mobile': '0'}
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:00:51.218[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:00:51.220[f5tts][debug][/data/f5tts/app/f5tts.py:156]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:00:51.220[f5tts][debug][/data/f5tts/app/f5tts.py:156]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:00:51.220[f5tts][debug][/data/f5tts/app/f5tts.py:156]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:00:51.220[f5tts][debug][/data/f5tts/app/f5tts.py:156] [[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
2024-12-25 14:00:51.220[f5tts][debug][/data/f5tts/app/f5tts.py:156]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
if audio:
|
||||||
2024-12-25 14:00:51.221[f5tts][debug][/data/f5tts/app/f5tts.py:156]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
2024-12-25 14:00:51.221[f5tts][debug][/data/f5tts/app/f5tts.py:156] [[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
|
||||||
2024-12-25 14:00:51.221[f5tts][debug][/data/f5tts/app/f5tts.py:156]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:55:47.736[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)' inference error
|
||||||
2024-12-25 14:00:51.221[f5tts][debug][/data/f5tts/app/f5tts.py:156]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:00:51.221[f5tts][debug][/data/f5tts/app/f5tts.py:156] inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:00:53.057[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/87/80/167/0/1WbLM9qhCBTWj1Ffhefsl.wav
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:00:53.106[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:00:53.107[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/87/80/167/0/1WbLM9qhCBTWj1Ffhefsl.wav
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:00:53.108[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0012960433959960938, (7.748603820800781e-05)
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:00:54.872[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/55/153/62/80/qNbCuAFtv1KTk-Jmn1LR4.wav
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:00:56.634[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/121/104/135/19/vt01w86d1k4yxN5imZWB2.wav
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
2024-12-25 14:01:00.179[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/13/119/151/94/Qh940GU61DwNY1E08jZoY.wav
|
if audio:
|
||||||
2024-12-25 14:01:00.205[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/infer_stream cost 9.024420976638794, (7.939338684082031e-05)
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
2024-12-25 14:01:05.878[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
|
||||||
2024-12-25 14:01:05.878[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/55/153/62/80/qNbCuAFtv1KTk-Jmn1LR4.wav
|
2025-05-11 13:55:47.741[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='' inference error
|
||||||
2024-12-25 14:01:05.879[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007560253143310547, (4.7206878662109375e-05)
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:01:11.756[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:01:11.757[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/121/104/135/19/vt01w86d1k4yxN5imZWB2.wav
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:01:11.757[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006923675537109375, (4.220008850097656e-05)
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:01:19.405[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:01:19.406[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/13/119/151/94/Qh940GU61DwNY1E08jZoY.wav
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:01:19.406[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006546974182128906, (4.100799560546875e-05)
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:11:06.700[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/infer_stream'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 105, in f5tts_infer
|
||||||
2024-12-25 14:11:06.733[f5tts][debug][<string>:2]params_kw={'speaker': 'zhc', 'prompt': '如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例。\r\n\r\n\u3000\u3000[[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费?\r\n\r\n\u3000\u3000[[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力。\r\n更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费。', '_webbricks_': '1', 'width': '1286', 'height': '1015', '_is_mobile': '0'}
|
debug(f'audio shape {audio.shape}, {gen_text=}')
|
||||||
2024-12-25 14:11:06.734[f5tts][debug][/data/f5tts/app/f5tts.py:68] detect_language():isReliable=True, textBytesFound=622, details=(('Chinese', 'zh', 98, 2029.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
AttributeError: 'NoneType' object has no attribute 'shape'
|
||||||
2024-12-25 14:11:06.735[f5tts][debug][/data/f5tts/app/f5tts.py:157]如今中国正在面临如何刺激消费、如何继续发展服务业来更好的扩大就业的问题,美国医疗产业的现状正是中国应极力避免的反例 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
2025-05-11 13:55:49.247[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)' inference error
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157] [[董洁]]未来几年,在国外贸易壁垒高企的情况下如何刺激国内消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:11:06.736[f5tts][debug][/data/f5tts/app/f5tts.py:157] [[mmm]]民主党式的大撒钱效果是不错,但代价就是高通胀和民主党丢掉所有执政权力 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:11:06.737[f5tts][debug][/data/f5tts/app/f5tts.py:157]
inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:11:06.737[f5tts][debug][/data/f5tts/app/f5tts.py:157]更适合中国的政策选项可能是从政府开支中对普通人社会保障和养老的部分提供补贴和政策优惠,减少普通家庭在社会保障和养老储蓄方面的负担,这样可以让普通民众对未来有更多信心,从而增加消费 inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:11:06.737[f5tts][debug][/data/f5tts/app/f5tts.py:157] inferences with speaker(zhc)..reg2='\\[\\[(\\w+)\\]\\]'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
2024-12-25 14:11:08.685[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/172/3/65/84/nzJxpT0zjoM8tAudKfoYU.wav
|
if audio:
|
||||||
2024-12-25 14:11:08.732[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
2024-12-25 14:11:08.733[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/172/3/65/84/nzJxpT0zjoM8tAudKfoYU.wav
|
|
||||||
2024-12-25 14:11:08.734[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.001477956771850586, (6.747245788574219e-05)
|
2025-05-11 13:55:50.829[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='跨账号使用服务码请先进行授权(查看详情)' inference error
|
||||||
2024-12-25 14:11:10.478[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/116/89/35/0/9WAyJsIjv9Aw1Pp89GWy4.wav
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:11:12.322[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/174/137/81/96/Rwdx8_UlR3SJrB_wOv-RE.wav
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:11:15.968[f5tts][debug][/data/f5tts/app/f5tts.py:59]/data/f5tts/files/tmp/160/161/193/48/GLWFI7kxAizLbCTIBI4Kh.wav
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:11:15.994[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /api/infer_stream cost 9.29337739944458, (8.177757263183594e-05)
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:11:21.510[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:11:21.511[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/116/89/35/0/9WAyJsIjv9Aw1Pp89GWy4.wav
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:11:21.511[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0009818077087402344, (6.29425048828125e-05)
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:11:27.392[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
2024-12-25 14:11:27.393[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/174/137/81/96/Rwdx8_UlR3SJrB_wOv-RE.wav
|
if audio:
|
||||||
2024-12-25 14:11:27.393[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0006704330444335938, (4.553794860839844e-05)
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
2024-12-25 14:11:35.055[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
|
||||||
2024-12-25 14:11:35.056[f5tts][debug][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/filedownload.py:62]path_download():download filename=/data/f5tts/files/tmp/160/161/193/48/GLWFI7kxAizLbCTIBI4Kh.wav
|
2025-05-11 13:55:50.836[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='' inference error
|
||||||
2024-12-25 14:11:35.056[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /idfile cost 0.0007236003875732422, (5.14984130859375e-05)
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:56:05.127[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:56:05.136[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access / cost 0.00849604606628418, (7.295608520507812e-05)
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:56:05.192[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/xterm.css'
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:56:05.195[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/xterm.css cost 0.0018618106842041016, (4.935264587402344e-05)
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
2024-12-25 14:56:05.215[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/video.min.js'
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
2024-12-25 14:56:05.235[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/video.min.js cost 0.019681453704833984, (5.745887756347656e-05)
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
2024-12-25 14:56:05.245[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/video-js.css'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 105, in f5tts_infer
|
||||||
2024-12-25 14:56:05.245[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/css/bricks.css'
|
debug(f'audio shape {audio.shape}, {gen_text=}')
|
||||||
2024-12-25 14:56:05.247[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/marked.min.js'
|
AttributeError: 'NoneType' object has no attribute 'shape'
|
||||||
2024-12-25 14:56:05.249[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/bricks/3parties/xterm.js'
|
|
||||||
2024-12-25 14:56:05.252[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/video-js.css cost 0.0068929195404052734, (4.4345855712890625e-05)
|
2025-05-11 13:55:52.370[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址' inference error
|
||||||
2024-12-25 14:56:05.254[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/css/bricks.css cost 0.007868528366088867, (2.6464462280273438e-05)
|
Traceback (most recent call last):
|
||||||
2024-12-25 14:56:05.254[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/css/myapp.css'
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
2024-12-25 14:56:05.261[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /css/myapp.css cost 0.006947994232177734, (2.9325485229492188e-05)
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
2024-12-25 14:56:05.262[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/marked.min.js cost 0.015009880065917969, (3.838539123535156e-05)
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
2024-12-25 14:56:05.264[f5tts][info][/d/f5tts/py3/lib/python3.12/site-packages/ahserver/auth_api.py:163]timecost=client(223.223.203.8) None access /bricks/3parties/xterm.js cost 0.015073299407958984, (3.62396240234375e-05)
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
|
if audio:
|
||||||
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
|
|
||||||
|
2025-05-11 13:55:53.946[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='SLB产品请按照绑定的ECS进行备案' inference error
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 103, in f5tts_infer
|
||||||
|
if audio:
|
||||||
|
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
|
||||||
|
|
||||||
|
2025-05-11 13:55:53.951[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:182]gen_text='' inference error
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 179, in _inference_stream
|
||||||
|
d = await infer(ref_audio, ref_text, gen_text, speed_factor)
|
||||||
|
File "/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/appPublic/worker.py", line 13, in async_func
|
||||||
|
return await loop.run_in_executor(None, sync_func, *args, **kw)
|
||||||
|
File "/usr/lib/python3.10/concurrent/futures/thread.py", line 58, in run
|
||||||
|
result = self.fn(*self.args, **self.kwargs)
|
||||||
|
File "/data/ymq/py/f5tts/app/f5tts.py", line 105, in f5tts_infer
|
||||||
|
debug(f'audio shape {audio.shape}, {gen_text=}')
|
||||||
|
AttributeError: 'NoneType' object has no attribute 'shape'
|
||||||
|
|
||||||
|
2025-05-11 13:55:53.951[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。' not audio generated
|
||||||
|
2025-05-11 13:55:53.974[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=None
|
||||||
|
2025-05-11 13:55:53.975[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.717182636260986, (0.00026106834411621094)
|
||||||
|
2025-05-11 13:55:54.302[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
|
2025-05-11 13:55:54.302[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': 'None'}, args=[]
|
||||||
|
2025-05-11 13:55:54.303[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/None
|
||||||
|
2025-05-11 13:55:54.303[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/None', filename='None', download=False
|
||||||
|
2025-05-11 13:55:54.303[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0010442733764648438, (0.00016736984252929688)
|
||||||
|
2025-05-11 14:00:28.271[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
|
2025-05-11 14:00:28.276[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:67] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:28.278[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:00:31.098[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (268544,), gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案'
|
||||||
|
2025-05-11 14:00:32.660[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (224256,), gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)'
|
||||||
|
2025-05-11 14:00:34.184[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (198144,), gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)'
|
||||||
|
2025-05-11 14:00:35.696[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (151040,), gen_text='跨账号使用服务码请先进行授权(查看详情)'
|
||||||
|
2025-05-11 14:00:37.170[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (313088,), gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址'
|
||||||
|
2025-05-11 14:00:38.764[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (109312,), gen_text='SLB产品请按照绑定的ECS进行备案'
|
||||||
|
2025-05-11 14:00:38.778[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。', final_sample_rate=24000
|
||||||
|
2025-05-11 14:00:38.779[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:58]/data/ymq/py/f5tts/files/tmp/147/14/144/62/UbsSgfERDa7EglEgzTMKr.wav
|
||||||
|
2025-05-11 14:00:38.833[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/147/14/144/62/UbsSgfERDa7EglEgzTMKr.wav
|
||||||
|
2025-05-11 14:00:38.834[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.562852144241333, (0.00026607513427734375)
|
||||||
|
2025-05-11 14:00:39.088[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
|
2025-05-11 14:00:39.090[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/147/14/144/62/UbsSgfERDa7EglEgzTMKr.wav'}, args=[]
|
||||||
|
2025-05-11 14:00:39.090[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/147/14/144/62/UbsSgfERDa7EglEgzTMKr.wav
|
||||||
|
2025-05-11 14:00:39.090[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/147/14/144/62/UbsSgfERDa7EglEgzTMKr.wav', filename='UbsSgfERDa7EglEgzTMKr.wav', download=False
|
||||||
|
2025-05-11 14:00:39.091[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0023779869079589844, (0.00029277801513671875)
|
||||||
|
2025-05-11 14:01:58.574[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
|
2025-05-11 14:01:58.579[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:67] detect_language():isReliable=True, textBytesFound=465, details=(('Chinese', 'zh', 93, 1040.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
|
2025-05-11 14:01:58.580[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]每个账号一个自然年内最多授权至 十 个不同账号(数量无限制) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]【规则】未授权的服务码只能在本账号下使用(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]跨账号使用服务码请先进行授权(查看详情) inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]SLB产品请按照绑定的ECS进行备案 inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:01:58.581[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(ymq)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:02:01.450[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (268544,), gen_text='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案'
|
||||||
|
2025-05-11 14:02:03.048[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (224256,), gen_text='每个账号一个自然年内最多授权至 十 个不同账号(数量无限制)'
|
||||||
|
2025-05-11 14:02:04.605[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (198144,), gen_text='【规则】未授权的服务码只能在本账号下使用(查看详情)'
|
||||||
|
2025-05-11 14:02:06.154[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (151040,), gen_text='跨账号使用服务码请先进行授权(查看详情)'
|
||||||
|
2025-05-11 14:02:07.653[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (313088,), gen_text='• ECS服务器备案条件:包年包月类型且购买时长三个月及以上(含续费);具有公网IP地址'
|
||||||
|
2025-05-11 14:02:09.267[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (109312,), gen_text='SLB产品请按照绑定的ECS进行备案'
|
||||||
|
2025-05-11 14:02:09.283[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='规则】只有 企业认证(不含个体工商户)账号才能将云产品授权其他账号备案。每个账号一个自然年内最多授权至 10 个不同账号(数量无限制)。\r\n【规则】未授权的服务码只能在本账号下使用(查看详情)。跨账号使用服务码请先进行授权(查看详情)。\r\n• ECS服务器备案条件:包年包月类型且购买时长3个月及以上(含续费);具有公网IP地址。SLB产品请按照绑定的ECS进行备案。', final_sample_rate=24000
|
||||||
|
2025-05-11 14:02:09.285[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:58]/data/ymq/py/f5tts/files/tmp/123/113/124/23/RRx-TT7H2gv2uFyH4Eig-.wav
|
||||||
|
2025-05-11 14:02:09.362[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/123/113/124/23/RRx-TT7H2gv2uFyH4Eig-.wav
|
||||||
|
2025-05-11 14:02:09.363[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 10.78964900970459, (0.0002446174621582031)
|
||||||
|
2025-05-11 14:02:09.622[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
|
2025-05-11 14:02:09.625[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/123/113/124/23/RRx-TT7H2gv2uFyH4Eig-.wav'}, args=[]
|
||||||
|
2025-05-11 14:02:09.625[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/123/113/124/23/RRx-TT7H2gv2uFyH4Eig-.wav
|
||||||
|
2025-05-11 14:02:09.626[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/123/113/124/23/RRx-TT7H2gv2uFyH4Eig-.wav', filename='RRx-TT7H2gv2uFyH4Eig-.wav', download=False
|
||||||
|
2025-05-11 14:02:09.626[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0032300949096679688, (0.0005578994750976562)
|
||||||
|
2025-05-11 14:07:10.157[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
|
2025-05-11 14:07:10.164[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:67] detect_language():isReliable=True, textBytesFound=664, details=(('ENGLISH', 'en', 99, 1156.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
|
2025-05-11 14:07:10.165[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]His day had started early with a shave and a tie, but now the stubble was inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.165[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]beginning to show and the tie was hanging at half-mast inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.165[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]The eyes told the inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]barman that the large vodka he had served two glasses ago hadn’t been the first inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]of the day inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]But Charlie was a genial drunk, always ready with a smile and a inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]generous word inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]He pushed his empty glass back across the counter. inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.166[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“Another?” The barman asked, dubious. inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“And one for yourself, my good man,” Charlie replied, reaching for his inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]wallet inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“Ah, but it seems I’m a little short,” he muttered, staring at a solitary note inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]in disbelief inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]He searched through his pocket and pulled out keys, a gray inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.168[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]handkerchief, and a few coins inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.168[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“I’m sure, somewhere…” inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:10.168[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:07:11.737[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (172544,), gen_text='His day had started early with a shave and a tie, but now the stubble was'
|
||||||
|
2025-05-11 14:07:13.245[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (127488,), gen_text='beginning to show and the tie was hanging at half-mast'
|
||||||
|
2025-05-11 14:07:14.841[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (39936,), gen_text='The eyes told the'
|
||||||
|
2025-05-11 14:07:16.383[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (191488,), gen_text='barman that the large vodka he had served two glasses ago hadn’t been the first'
|
||||||
|
2025-05-11 14:07:17.961[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (23296,), gen_text='of the day'
|
||||||
|
2025-05-11 14:07:19.454[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (148736,), gen_text='But Charlie was a genial drunk, always ready with a smile and a'
|
||||||
|
2025-05-11 14:07:21.045[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (30464,), gen_text='generous word'
|
||||||
|
2025-05-11 14:07:22.565[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (118016,), gen_text='He pushed his empty glass back across the counter.'
|
||||||
|
2025-05-11 14:07:24.127[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (96768,), gen_text='“Another?” The barman asked, dubious.'
|
||||||
|
2025-05-11 14:07:25.636[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (174848,), gen_text='“And one for yourself, my good man,” Charlie replied, reaching for his'
|
||||||
|
2025-05-11 14:07:27.258[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (47104,), gen_text='wallet'
|
||||||
|
2025-05-11 14:07:28.854[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (198656,), gen_text='“Ah, but it seems I’m a little short,” he muttered, staring at a solitary note'
|
||||||
|
2025-05-11 14:07:30.432[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (28160,), gen_text='in disbelief'
|
||||||
|
2025-05-11 14:07:31.941[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (136960,), gen_text='He searched through his pocket and pulled out keys, a gray'
|
||||||
|
2025-05-11 14:07:33.571[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (68352,), gen_text='handkerchief, and a few coins'
|
||||||
|
2025-05-11 14:07:35.167[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (70656,), gen_text='“I’m sure, somewhere…”'
|
||||||
|
2025-05-11 14:07:35.181[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='His day had started early with a shave and a tie, but now the stubble was\r\nbeginning to show and the tie was hanging at half-mast. The eyes told the\r\nbarman that the large vodka he had served two glasses ago hadn’t been the first\r\nof the day. But Charlie was a genial drunk, always ready with a smile and a\r\ngenerous word. He pushed his empty glass back across the counter.\r\n“Another?” The barman asked, dubious.\r\n“And one for yourself, my good man,” Charlie replied, reaching for his\r\nwallet. “Ah, but it seems I’m a little short,” he muttered, staring at a solitary note\r\nin disbelief. He searched through his pocket and pulled out keys, a gray\r\nhandkerchief, and a few coins. “I’m sure, somewhere…”\r\n', final_sample_rate=24000
|
||||||
|
2025-05-11 14:07:35.183[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:58]/data/ymq/py/f5tts/files/tmp/58/128/117/23/ex4kMdlRu5njqEdvWamQT.wav
|
||||||
|
2025-05-11 14:07:35.263[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/58/128/117/23/ex4kMdlRu5njqEdvWamQT.wav
|
||||||
|
2025-05-11 14:07:35.264[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 25.107532739639282, (0.00027680397033691406)
|
||||||
|
2025-05-11 14:07:35.515[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
|
2025-05-11 14:07:35.516[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/58/128/117/23/ex4kMdlRu5njqEdvWamQT.wav'}, args=[]
|
||||||
|
2025-05-11 14:07:35.516[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/58/128/117/23/ex4kMdlRu5njqEdvWamQT.wav
|
||||||
|
2025-05-11 14:07:35.516[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/58/128/117/23/ex4kMdlRu5njqEdvWamQT.wav', filename='ex4kMdlRu5njqEdvWamQT.wav', download=False
|
||||||
|
2025-05-11 14:07:35.517[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0015912055969238281, (0.00039076805114746094)
|
||||||
|
2025-05-11 14:10:26.658[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/api/inference'
|
||||||
|
2025-05-11 14:10:26.664[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:67] detect_language():isReliable=True, textBytesFound=664, details=(('ENGLISH', 'en', 99, 1156.0), ('Unknown', 'un', 0, 0.0), ('Unknown', 'un', 0, 0.0))
|
||||||
|
2025-05-11 14:10:26.665[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]His day had started early with a shave and a tie, but now the stubble was beginning to show and the tie was hanging at half-mast inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.665[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]The eyes told the barman that the large vodka he had served two glasses ago hadn’t been the first inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.665[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]of the day inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.666[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]But Charlie was a genial drunk, always ready with a smile and a generous word inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.666[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]He pushed his empty glass back across the counter. inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.666[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“Another?” The barman asked, dubious. inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.666[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“And one for yourself, my good man,” Charlie replied, reaching for his wallet inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.666[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“Ah, but it seems I’m a little short,” he muttered, staring at a solitary note in disbelief inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.667[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.667[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]He searched through his pocket and pulled out keys, a gray handkerchief, and a few coins inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.667[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157]“I’m sure, somewhere…” inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:26.667[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:157] inferences with speaker(main)..reg2='\\[\\[(\\w+)\\]\\]'
|
||||||
|
2025-05-11 14:10:28.219[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (302848,), gen_text='His day had started early with a shave and a tie, but now the stubble was beginning to show and the tie was hanging at half-mast'
|
||||||
|
2025-05-11 14:10:29.814[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (233984,), gen_text='The eyes told the barman that the large vodka he had served two glasses ago hadn’t been the first'
|
||||||
|
2025-05-11 14:10:31.336[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (23296,), gen_text='of the day'
|
||||||
|
2025-05-11 14:10:32.940[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (182016,), gen_text='But Charlie was a genial drunk, always ready with a smile and a generous word'
|
||||||
|
2025-05-11 14:10:34.447[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (118016,), gen_text='He pushed his empty glass back across the counter.'
|
||||||
|
2025-05-11 14:10:35.988[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (96768,), gen_text='“Another?” The barman asked, dubious.'
|
||||||
|
2025-05-11 14:10:37.544[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (191488,), gen_text='“And one for yourself, my good man,” Charlie replied, reaching for his wallet'
|
||||||
|
2025-05-11 14:10:39.134[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (229376,), gen_text='“Ah, but it seems I’m a little short,” he muttered, staring at a solitary note in disbelief'
|
||||||
|
2025-05-11 14:10:40.709[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (208128,), gen_text='He searched through his pocket and pulled out keys, a gray handkerchief, and a few coins'
|
||||||
|
2025-05-11 14:10:42.232[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:107]audio shape (70656,), gen_text='“I’m sure, somewhere…”'
|
||||||
|
2025-05-11 14:10:42.246[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:241]prompt='His day had started early with a shave and a tie, but now the stubble was beginning to show and the tie was hanging at half-mast. The eyes told the barman that the large vodka he had served two glasses ago hadn’t been the first\r\nof the day. But Charlie was a genial drunk, always ready with a smile and a generous word. He pushed his empty glass back across the counter.\r\n“Another?” The barman asked, dubious.\r\n“And one for yourself, my good man,” Charlie replied, reaching for his wallet. “Ah, but it seems I’m a little short,” he muttered, staring at a solitary note in disbelief. \r\nHe searched through his pocket and pulled out keys, a gray handkerchief, and a few coins. “I’m sure, somewhere…”\r\n', final_sample_rate=24000
|
||||||
|
2025-05-11 14:10:42.248[f5tts][debug][/data/ymq/py/f5tts/app/f5tts.py:58]/data/ymq/py/f5tts/files/tmp/93/126/83/94/Wvyf3n1vW_NKESfT_X8D9.wav
|
||||||
|
2025-05-11 14:10:42.329[f5tts][debug][<string>:6]inference/index.dspy:return url=https://sage.opencomputing.ai:443/f5tts/idfile?path=/tmp/93/126/83/94/Wvyf3n1vW_NKESfT_X8D9.wav
|
||||||
|
2025-05-11 14:10:42.330[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /api/inference cost 15.671574831008911, (0.0003139972686767578)
|
||||||
|
2025-05-11 14:10:42.593[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:151]checkAuth() called ... request.path='/idfile'
|
||||||
|
2025-05-11 14:10:42.594[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/functionProcessor.py:40]params_kw={'path': '/tmp/93/126/83/94/Wvyf3n1vW_NKESfT_X8D9.wav'}, args=[]
|
||||||
|
2025-05-11 14:10:42.594[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:48]path_download():download filename=/data/ymq/py/f5tts/files/tmp/93/126/83/94/Wvyf3n1vW_NKESfT_X8D9.wav
|
||||||
|
2025-05-11 14:10:42.595[f5tts][debug][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/filedownload.py:28]filepath='/data/ymq/py/f5tts/files/tmp/93/126/83/94/Wvyf3n1vW_NKESfT_X8D9.wav', filename='Wvyf3n1vW_NKESfT_X8D9.wav', download=False
|
||||||
|
2025-05-11 14:10:42.595[f5tts][info][/data/ymq/py/f5tts/py3/lib/python3.10/site-packages/ahserver/auth_api.py:163]timecost=client(123.121.164.230) None access /idfile cost 0.0015573501586914062, (0.0003724098205566406)
|
||||||
|
Loading…
Reference in New Issue
Block a user