1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 10:29:28 +00:00

[bilibili] fix srt conversion when timestamp is long float

This commit is contained in:
Du, Song 2021-06-05 00:28:17 -04:00
parent cc6dec72b1
commit 3dc46ff697

View file

@ -113,12 +113,10 @@ class BiliBiliIE(InfoExtractor):
_BILIBILI_KEY = 'aHRmhWMLkdeMuILqORnYZocwMBpMEOdt'
def convert_timestamp_format(self, cc_timestamp):
s, mm = int(cc_timestamp), 0
if "." in str(cc_timestamp):
s, mm = map(int, str(cc_timestamp).split("."))
m, s = divmod(s, 60)
ss, mm = "{:.3f}".format(float(cc_timestamp)).split(".")
m, s = divmod(int(ss), 60)
h, m = divmod(m, 60)
return "%02d:%02d:%02d,%03d" % (h, m, s, mm)
return "%02d:%02d:%02d,%s" % (h, m, s, mm)
def _report_error(self, result):
if 'message' in result: