26 lines
437 B
Python
Executable File
26 lines
437 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import time
|
|
import clockytracklist
|
|
|
|
print("-------------------------------------")
|
|
print("-------------------------------------")
|
|
tl=clockytracklist.ClockyTracklist("mp3",recursive=True,sort=False,verbose=True)
|
|
tl.ShowTrackList()
|
|
print("-------------------------------------")
|
|
for e in tl.tracklist:
|
|
print(e);
|
|
|
|
|
|
|
|
t=0
|
|
while True:
|
|
t+=1
|
|
tl.CheckTrackList()
|
|
time.sleep(1)
|
|
|
|
if(t>30):
|
|
break
|
|
print(t)
|
|
|