require more tests

This commit is contained in:
localhost_frssoft 2023-08-03 18:58:17 +03:00
parent 6c7bcf476f
commit 2301adac39
1 changed files with 6 additions and 0 deletions

View File

@ -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(