]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blob - helpers/__init__.py
Put time duration in playlist
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / __init__.py
1 # -*- coding: utf-8 -*-
2 import sys
3 import os
4
5 def path():
6 if getattr(sys, 'frozen', False):
7 return sys._MEIPASS + "/"
8 else:
9 path = os.path.dirname(os.path.realpath(__file__))
10 return path + "/../"
11
12 def duration_to_min_sec(duration):
13 minutes = int(duration / 60)
14 seconds = int(duration) % 60
15 if minutes < 100:
16 return "{:2}:{:0>2}".format(minutes, seconds)
17 else:
18 return "{}:{:0>2}".format(minutes, seconds)