From f48e4078137bc239dfe9189e7552a1bee00b639a Mon Sep 17 00:00:00 2001 From: vijay Date: Mon, 8 Jun 2026 08:23:20 +0000 Subject: [PATCH] Update plexdb.py --- plexdb.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plexdb.py b/plexdb.py index 0f24a4b..707ba92 100644 --- a/plexdb.py +++ b/plexdb.py @@ -29,11 +29,10 @@ def run_db_injection(db_path): print("[*] Found {} unanalyzed STRM files. Injecting metadata...".format(len(unanalyzed))) for part_id, item_id, file_path in unanalyzed: - # 1. Update Media Item with dummy dimensions and duration (1080p H264 profile) cursor.execute(""" UPDATE media_items SET width=1920, height=1080, duration=7200000, container='mkv', video_codec='h264', audio_codec='aac', - video_frame_rate='24p', size=112 + size=112 WHERE id = ? """, (item_id,))