27 lines
467 B
Python
27 lines
467 B
Python
#!/usr/bin/python
|
|
|
|
import time
|
|
import clockytracklist
|
|
|
|
print("-------------------------------------")
|
|
print("-------------------------------------")
|
|
t1=clockytracklist.ClockyTracklist("mp3",True,True)
|
|
t1.ShowTrackList()
|
|
print("-------------------------------------")
|
|
t2=clockytracklist.ClockyTracklist("C:\data",True,True)
|
|
t2.ShowTrackList()
|
|
|
|
|
|
|
|
t=0
|
|
while True:
|
|
t+=1
|
|
t1.CheckTrackList()
|
|
t2.CheckTrackList()
|
|
time.sleep(1)
|
|
|
|
if(t>30):
|
|
break
|
|
print(t)
|
|
|