URIs without URL metadata were not being registered for VLC (reported by Phaseout)
This commit is contained in:
parent
c70546a9a3
commit
0245f86588
@ -5,7 +5,7 @@
|
||||
Principal author: Etoh
|
||||
Other contributors: DerGenaue, jb
|
||||
Project: http://syncplay.pl/
|
||||
Version: 0.2.7
|
||||
Version: 0.2.8
|
||||
|
||||
Note:
|
||||
* This interface module is intended to be used in conjunction with Syncplay.
|
||||
@ -84,7 +84,7 @@ You may also need to re-copy the syncplay.lua file when you update VLC.
|
||||
|
||||
--]==========================================================================]
|
||||
|
||||
local connectorversion = "0.2.7"
|
||||
local connectorversion = "0.2.8"
|
||||
local vlcversion = vlc.misc.version()
|
||||
local durationdelay = 500000 -- Pause for get_duration command etc for increased reliability (uses microseconds)
|
||||
local loopsleepduration = 2500 -- Pause for every event loop (uses microseconds)
|
||||
@ -331,6 +331,8 @@ function get_filepath ()
|
||||
local metas = item:metas()
|
||||
if metas and metas["url"] and string.len(metas["url"]) > 0 then
|
||||
response = metas["url"]
|
||||
elseif item:uri() and string.len(item:uri()) > 0 then
|
||||
response = item:uri()
|
||||
else
|
||||
response = unknownstream
|
||||
end
|
||||
|
||||
@ -63,7 +63,7 @@ COMMANDS_AUTH = ['a','auth']
|
||||
COMMANDS_TOGGLE = ['t','toggle']
|
||||
MPC_MIN_VER = "1.6.4"
|
||||
VLC_MIN_VERSION = "2.2.1"
|
||||
VLC_INTERFACE_MIN_VERSION = "0.2.7"
|
||||
VLC_INTERFACE_MIN_VERSION = "0.2.8"
|
||||
VLC_LATENCY_ERROR_THRESHOLD = 2.0
|
||||
CONTROLLED_ROOMS_MIN_VERSION = "1.3.0"
|
||||
USER_READY_MIN_VERSION = "1.3.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user