From 19551200d57bcaba8d665f842208a9296129df62 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 5 Feb 2017 16:02:22 +0100 Subject: ytdl_hook: fix EDL syntax All entries must be separated by ";" or "\n". The parser just doesn't enforce it if an entry uses quoting. --- player/lua/ytdl_hook.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua index ddb699cb48..b12f740d80 100644 --- a/player/lua/ytdl_hook.lua +++ b/player/lua/ytdl_hook.lua @@ -93,7 +93,7 @@ local function edl_track_joined(fragments) local offset = 1 if fragments[1] and not fragments[1].duration then -- if no duration, probably initialization segment - edl = edl .. "!mp4_dash,init=" .. edl_escape(fragments[1].url) + edl = edl .. "!mp4_dash,init=" .. edl_escape(fragments[1].url) .. ";" offset = 2 end for i = offset, #fragments do -- cgit v1.2.3