Skip to content

Commit

Permalink
Lower check_am_empty_text_fields to info level
Browse files Browse the repository at this point in the history
  • Loading branch information
remia committed Mar 9, 2021
1 parent 0248557 commit 0e7b99a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion clairmeta/dcp_check_am.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ def check_am_name(self, am):
def check_am_empty_text_fields(self, am):
""" AssetMap empty text fields check.
Reference : N/A
This check for empty 'Creator', 'Issuer' or 'AnnotationText' text
fields. While not invalid per specification, it appears other
checking tools might trigger error / warning here so we provide
this to align with other check reports.
References:
mpeg_ii_am_spec.doc (v3.4) 4.1.2, 4.1.5, 4.1.6
SMPTE ST 429-9:2014 5.2, 5.3, 5.6
"""
fields = ['Creator', 'Issuer', 'AnnotationText']
empty_fields = []
Expand Down
2 changes: 1 addition & 1 deletion clairmeta/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'check_dcnc_': 'WARNING',
'check_dcp_foreign_files': 'WARNING',
'check_assets_am_volindex_one': 'WARNING',
'check_am_empty_text_fields': 'WARNING',
'check_am_empty_text_fields': 'INFO',
'check_pkl_empty_text_fields': 'WARNING',
'check_cpl_empty_text_fields': 'WARNING',
'check_cpl_contenttitle_annotationtext_match': 'WARNING',
Expand Down

0 comments on commit 0e7b99a

Please sign in to comment.