mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-23 23:19:21 +02:00
Compare commits
2 Commits
86bbdcf0ea
...
0c1a5d0887
Author | SHA1 | Date | |
---|---|---|---|
localhost_frssoft | 0c1a5d0887 | ||
localhost_frssoft | 348c80973b |
|
@ -74,17 +74,17 @@ def get_instance_settings():
|
||||||
@logger.catch
|
@logger.catch
|
||||||
def get_audio_file(track_uuid, listen_url=False, download=False,
|
def get_audio_file(track_uuid, listen_url=False, download=False,
|
||||||
transcoding=get_config('enable_server_transcoding'), to='ogg'):
|
transcoding=get_config('enable_server_transcoding'), to='ogg'):
|
||||||
if not transcoding:
|
|
||||||
to = None
|
|
||||||
params = {
|
params = {
|
||||||
"download": download,
|
"download": download,
|
||||||
"to": to
|
"to": to
|
||||||
}
|
}
|
||||||
|
if not transcoding:
|
||||||
|
del params['to']
|
||||||
if listen_url:
|
if listen_url:
|
||||||
url = f'https://{current_instance.instance}{track_uuid}?'
|
url = f'https://{current_instance.instance}{track_uuid}?'
|
||||||
else:
|
else:
|
||||||
url = f'https://{current_instance.instance}/api/v1/listen/{track_uuid}?'
|
url = f'https://{current_instance.instance}/api/v1/listen/{track_uuid}?'
|
||||||
return url + urllib.parse.urlencode(params)
|
return url + urllib.parse.urlencode(params, doseq=True)
|
||||||
|
|
||||||
|
|
||||||
@logger.catch
|
@logger.catch
|
||||||
|
|
|
@ -147,6 +147,7 @@ def radio_load(id_radio=None, type_radio='custom', name=None, related_object=Non
|
||||||
key = track.get(i)
|
key = track.get(i)
|
||||||
if key and isinstance(key, str):
|
if key and isinstance(key, str):
|
||||||
print(i + ': ' + key)
|
print(i + ': ' + key)
|
||||||
|
print('Direct link: ' + player.stream_open_filename)
|
||||||
input()
|
input()
|
||||||
elif select == 'Like':
|
elif select == 'Like':
|
||||||
favorite_track(player_fw_storage.storage.get(
|
favorite_track(player_fw_storage.storage.get(
|
||||||
|
|
|
@ -5,6 +5,7 @@ from loguru import logger
|
||||||
from pyfzf.pyfzf import FzfPrompt
|
from pyfzf.pyfzf import FzfPrompt
|
||||||
import mpv
|
import mpv
|
||||||
import time
|
import time
|
||||||
|
import sys
|
||||||
|
|
||||||
fzf = FzfPrompt()
|
fzf = FzfPrompt()
|
||||||
|
|
||||||
|
@ -48,6 +49,20 @@ if track_activity_history:
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
|
|
||||||
|
@player.property_observer('filtered-metadata')
|
||||||
|
@logger.catch
|
||||||
|
def osd_observer(_name, value):
|
||||||
|
'''Sumulate osd playing message in console'''
|
||||||
|
if value:
|
||||||
|
osd_message = []
|
||||||
|
for i in value.items():
|
||||||
|
if i[0] in ('Artist', 'Album', 'Title'):
|
||||||
|
osd_message.append(i[1])
|
||||||
|
sys.stdout.write('\r ')
|
||||||
|
sys.stdout.write('\r'+' — '.join(osd_message))
|
||||||
|
sys.stdout.flush()
|
||||||
|
|
||||||
|
|
||||||
def set_http_header(headers=[]):
|
def set_http_header(headers=[]):
|
||||||
player.http_header_fields = headers
|
player.http_header_fields = headers
|
||||||
|
|
||||||
|
@ -91,6 +106,7 @@ def player_menu(header='', storage={}):
|
||||||
key = track.get(i)
|
key = track.get(i)
|
||||||
if key and isinstance(key, str):
|
if key and isinstance(key, str):
|
||||||
print(i + ': ' + key)
|
print(i + ': ' + key)
|
||||||
|
print('Direct link: ' + player.stream_open_filename)
|
||||||
input()
|
input()
|
||||||
elif select == 'Like':
|
elif select == 'Like':
|
||||||
src.fw_api.favorite_track(
|
src.fw_api.favorite_track(
|
||||||
|
|
Loading…
Reference in New Issue