From 0515548b4ae1e5c1dea7484eab3630c0057c9397 Mon Sep 17 00:00:00 2001 From: Sundog Date: Tue, 17 Sep 2024 09:57:57 -0400 Subject: [PATCH] edl integration work --- layout.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layout.html b/layout.html index 5a5bf21..5639fde 100755 --- a/layout.html +++ b/layout.html @@ -459,6 +459,8 @@ media_library_target.innerHTML = ""; rows.forEach((row) => { + console.log("Processing media:"); + console.dir(row); const duration = secs_to_human_duration(row['duration_secs']); const template = document.getElementById("media_item_template"); const template_clone = template.content.firstElementChild.cloneNode(true);