]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blobdiff - helpers/__init__.py
Put time duration in playlist
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / __init__.py
index 40a96afc6ff09d58a702b76e3f7dd412fe975e26..0f819e793653744983f99702daef11df9a51af60 100644 (file)
@@ -1 +1,18 @@
 # -*- coding: utf-8 -*-
+import sys
+import os
+
+def path():
+    if getattr(sys, 'frozen', False):
+        return sys._MEIPASS + "/"
+    else:
+        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)