Skip to content

Commit

Permalink
Merge pull request #593 from Ikaros-521/owner
Browse files Browse the repository at this point in the history
针对tts出现无权限打开播放的问题进行了时间函数修改,理论上10s内的合成不会出现重复情况(待实测
  • Loading branch information
Ikaros-521 authored Jan 27, 2024
2 parents 7ade8ba + 114e05e commit 43974ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_bj_time(self, type=0):
1 返回数据:年-月-日
2 返回数据:当前时间的秒
3 返回数据:自1970年1月1日以来的秒数
4 返回数据:返回自1970年1月1日以来的毫秒数 % 100
4 返回数据:返回 (自1970年1月1日以来的毫秒数 / 100) % 100
5 返回数据:当前 时点分
6 返回数据:当前时间的 时, 分
Expand Down Expand Up @@ -79,7 +79,7 @@ def get_bj_time(self, type=0):
return str(current_time)
elif type == 4:
current_time = time.time() # 返回自1970年1月1日以来的秒数
current_milliseconds = int(current_time * 1000) # 毫秒为单位
current_milliseconds = int(current_time * 10) # 0.1秒为单位
tgt_time = current_milliseconds % 100 # 用于生成音频文件名

return str(tgt_time)
Expand Down

0 comments on commit 43974ad

Please sign in to comment.