From e0b3f0dec29dfe2952a8bdf445295e8445a8ecd9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 2 Feb 2023 01:03:40 +0100 Subject: In Deluxe's "Specifications for Digital Cinema Source and DCP Content Delivery" they say that subtitle must be of the form yyyy-mm-ddThh:mm:ss They don't explain it, and the standards don't say this (as far as I can see) but as usual their QC fails that don't meet this "spec" so here we are. See also: https://dcpomatic.com/forum/viewtopic.php?t=2069 --- src/smpte_subtitle_asset.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc index 9d728cc6..375bae0a 100644 --- a/src/smpte_subtitle_asset.cc +++ b/src/smpte_subtitle_asset.cc @@ -351,7 +351,7 @@ SMPTESubtitleAsset::xml_as_string () const if (_annotation_text) { root->add_child("AnnotationText")->add_child_text(_annotation_text.get()); } - root->add_child("IssueDate")->add_child_text(_issue_date.as_string(true)); + root->add_child("IssueDate")->add_child_text(_issue_date.as_string(false, false)); if (_reel_number) { root->add_child("ReelNumber")->add_child_text(raw_convert(_reel_number.get())); } -- cgit v1.2.3