From 4f76c0fe7e8527a31510cb3009e07db82276dd7a Mon Sep 17 00:00:00 2001 From: Adrian of Doom <52701496+futzu@users.noreply.github.com> Date: Tue, 26 Nov 2024 22:08:24 -0500 Subject: [PATCH] fixed xml double decriptor bug --- threefive/upids.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/threefive/upids.py b/threefive/upids.py index ebba071b..5c5155b6 100644 --- a/threefive/upids.py +++ b/threefive/upids.py @@ -387,11 +387,11 @@ def xml(self, ns="scte35"): # segmentation_upid_type : [name, class, length] upid_map = { 0x00: ["No UPID", NoUpid, 0], - 0x01: ["0x01 'User Defined' is Deprecated use 0x0C MPU ", Upid, False], - 0x02: ["0x02 ISCI is Deprecated use 0x03 'AdID' ", Upid, 8], + 0x01: ["Heads Up! UPID 0x01 'User Defined' is deprecated. Use 0x0C 'MPU'.", Upid, False], + 0x02: ["Heads Up! UPID 0x02 'ISCI' is Deprecated use 0x03 'AdID'.", Upid, 8], 0x03: ["AdID", Upid, 12], 0x04: ["UMID", Umid, 32], - 0x05: ["0x05 ISAN is Deprecated use 0x06 ISAN.", Isan, 8], + 0x05: ["Heads Up! UPID 0x05 'ISAN' is Deprecated use 0x06 'ISAN'.", Isan, 8], 0x06: ["ISAN", Isan, 12], 0x07: ["TID", Upid, 12], 0x08: ["AiringID", AirId, 8],