fix 部分情况下视频不能正常显示

This commit is contained in:
xaoyaoo 2024-04-13 20:18:14 +08:00
parent 7732ccca5d
commit 515d6f7384

View File

@ -330,18 +330,18 @@ def get_real_time_msg():
msg_paths.sort() msg_paths.sort()
micro_paths = micro_paths[1] micro_paths = micro_paths[1]
micro_paths.sort() micro_paths.sort()
for i in media_paths: # for i in media_paths:
print(i) # print(i)
merge_real_time_db(key=key, db_path=i, merge_path=save_media_path) # merge_real_time_db(key=key, db_path=i, merge_path=save_media_path)
for i in msg_paths: # for i in msg_paths:
print(i) # print(i)
merge_real_time_db(key=key, db_path=i, merge_path=save_msg_path) # merge_real_time_db(key=key, db_path=i, merge_path=save_msg_path)
for i in micro_paths: # for i in micro_paths:
print(i) # print(i)
merge_real_time_db(key=key, db_path=i, merge_path=save_micro_path) # merge_real_time_db(key=key, db_path=i, merge_path=save_micro_path)
# merge_real_time_db(key=key, db_path=media_paths[-1], merge_path=save_media_path) merge_real_time_db(key=key, db_path=media_paths[-1], merge_path=save_media_path)
# merge_real_time_db(key=key, db_path=msg_paths[-1], merge_path=save_msg_path) merge_real_time_db(key=key, db_path=msg_paths[-1], merge_path=save_msg_path)
# merge_real_time_db(key=key, db_path=micro_paths[-1], merge_path=save_micro_path) merge_real_time_db(key=key, db_path=micro_paths[-1], merge_path=save_micro_path)
return ReJson(0, "success") return ReJson(0, "success")