mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-14 18:59:20 +02:00
require more tests
This commit is contained in:
parent
6c7bcf476f
commit
2301adac39
|
@ -2,6 +2,7 @@ import subprocess
|
|||
import os
|
||||
import json
|
||||
import threading
|
||||
import time
|
||||
from src.mpv_control import player
|
||||
from loguru import logger
|
||||
'''Warning! This module can be very battery drain'''
|
||||
|
@ -11,6 +12,7 @@ from loguru import logger
|
|||
def handle_vol_lvl_as_switch_track():
|
||||
volume_diff = []
|
||||
while True:
|
||||
debug_time = time.time()
|
||||
volume = subprocess.Popen("termux-volume", stdout=subprocess.PIPE).stdout
|
||||
json_volume = json.loads(volume.read())
|
||||
for i in json_volume:
|
||||
|
@ -26,6 +28,10 @@ def handle_vol_lvl_as_switch_track():
|
|||
pass
|
||||
os.system(f'termux-volume music {before}')
|
||||
volume_diff = []
|
||||
debug_time2 = time.time()
|
||||
total = debug_time2 - debug_time
|
||||
print(total)
|
||||
time.sleep(0.300)
|
||||
|
||||
|
||||
handle_vol_lvl = threading.Thread(
|
||||
|
|
Loading…
Reference in New Issue