mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Add static=true to direct stream music
Try to prevent transcode for music with the parameter
This commit is contained in:
parent
b3817ce46c
commit
3331b5e838
1 changed files with 1 additions and 1 deletions
|
@ -2030,7 +2030,7 @@ class Music(Items):
|
|||
##### GET THE FILE AND PATH #####
|
||||
if self.directstream:
|
||||
path = "%s/emby/Audio/%s/" % (self.server, itemid)
|
||||
filename = "stream.mp3"
|
||||
filename = "stream.mp3?static=true"
|
||||
else:
|
||||
playurl = API.get_file_path()
|
||||
|
||||
|
|
Loading…
Reference in a new issue