mirror of
http://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-22 07:21:28 +00:00
compressed request for speed up
This commit is contained in:
parent
309e36db43
commit
bc2b7efdd9
|
@ -34,7 +34,7 @@ def create_playlist_file(track_list):
|
|||
def filter_tracks(tracks):
|
||||
def remove_unreach_tracks(track):
|
||||
try:
|
||||
r = requests.head(track['listen_url'], timeout=2)
|
||||
r = requests.head(track['listen_url'], timeout=2, headers={'Content-Encoding': 'gzip'})
|
||||
r.raise_for_status()
|
||||
return 1
|
||||
except:
|
||||
|
@ -74,8 +74,9 @@ def filter_tracks(tracks):
|
|||
|
||||
def search_tracks_on_instance(instance, tag='', query='', recursion=args.recursion):
|
||||
r = requests.get(f'https://{instance}/api/v1/tracks', params={'tag': tag, 'q': query,
|
||||
'local': True, 'playable': True,
|
||||
'ordering': 'random'}, timeout=10)
|
||||
'local': True, 'playable': True,
|
||||
'ordering': 'random', 'scope': 'all'},
|
||||
timeout=10, headers={'Content-Encoding': 'gzip'})
|
||||
r.raise_for_status()
|
||||
tracks = r.json()
|
||||
|
||||
|
|
Loading…
Reference in a new issue