Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added full list of media files (and associated data) from the HEADER section #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions speach/elan.py
Original file line number Diff line number Diff line change
Expand Up @@ -1238,6 +1238,7 @@ class Doc(DataObject):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.properties = OrderedDict()
self.media_descriptors = [] # JMG added this
self.time_order = OrderedDict()
self.__tiers = []
self.__tier_map = OrderedDict() # internal - map tierIDs to tier objects
Expand Down Expand Up @@ -1557,6 +1558,8 @@ def _update_header_xml(self, node):
# extract extra properties
for prop_node in node.findall('PROPERTY'):
self.properties[prop_node.get('NAME')] = prop_node.text
for media_node in node.findall('MEDIA_DESCRIPTOR'):
self.media_descriptors.append(media_node.attrib)

def _add_tier_xml(self, tier_node) -> Tier:
""" [Internal function] Parse a TIER XML node, create an ELANTier object and link it to this ELAN Doc
Expand Down