This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
automated-youtube-dl/server/helpers/misc.py

8 lines
206 B
Python

import datetime
def get_elapsed_time_from_ms(timestamp):
timestamp = datetime.datetime.fromtimestamp(timestamp / 1000.0)
current_time = datetime.datetime.now()
return current_time - timestamp