Fix display caption loading track: event based now

This commit is contained in:
localhost_frssoft 2022-12-30 02:43:11 +03:00
parent 1a08795a6b
commit 24b0b24ad9
1 changed files with 3 additions and 4 deletions

View File

@ -65,12 +65,11 @@ def osd_observer(_name, value):
print_there(0, 0, '\r'+osd_string[:term_len])
@player.property_observer('stream-open-filename')
@player.event_callback('start-file')
@logger.catch
def waiting_load_observer(_name, value):
def starting_file_handler(value):
'''just show loading state'''
if value and player.core_idle:
print_there(0, 0, '\rLoading track...')
print_there(0, 0, '\rLoading track...')
@player.property_observer('percent-pos')