From 98ff43054fe94f333e2deda2906cd62593ded1d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Mon, 27 Jun 2016 10:27:35 +0200 Subject: Put time duration in playlist --- helpers/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'helpers/__init__.py') diff --git a/helpers/__init__.py b/helpers/__init__.py index 70667fd..0f819e7 100644 --- a/helpers/__init__.py +++ b/helpers/__init__.py @@ -9,3 +9,10 @@ def path(): path = os.path.dirname(os.path.realpath(__file__)) return path + "/../" +def duration_to_min_sec(duration): + minutes = int(duration / 60) + seconds = int(duration) % 60 + if minutes < 100: + return "{:2}:{:0>2}".format(minutes, seconds) + else: + return "{}:{:0>2}".format(minutes, seconds) -- cgit v1.2.3