From 1cd313b48aaf8f97d0f8887a6d2aa6d31e06e3f0 Mon Sep 17 00:00:00 2001 From: Sundog Date: Tue, 17 Sep 2024 09:29:52 -0400 Subject: [PATCH] edl integration work --- layout.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layout.html b/layout.html index 11dae84..dba2b45 100755 --- a/layout.html +++ b/layout.html @@ -472,6 +472,8 @@ thisRow.setAttribute("data-episode-number", row['episode_number']); thisRow.setAttribute("data-duration", row['duration_secs']); if (row['edl_definition'] !== undefined) { + console.log("EDL found:"); + console.dir(row['edl_definition']); const edl = JSON.parse(row['edl_definition']); thisRow.setAttribute("data-inpoint", edl.inpoint); thisRow.setAttribute("data-outpoint", edl.outpoint)