Skip to content

keeleleek/dfdl-praat-textgrid-schema

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DFDL parser/unparser for Praat TextGrid and XML

This is a first try on a Data Format Description Language (DFDL) parser and unparser for Praat TextGrid files. The DFDL schema enables to read and modify TextGrid files using XML technology. This makes possible lossless archiving of original TextGrid files alongside a XML database. XML technology can be used to create interfaces and adapters between different data formats.

The XML schema is not definite yet. Any comments welcome.

The situation

In many linguistics communities there exists now the need for writing their own parsers and serializers (in DFDL parlour 'unparser') for Praat TextGrid files. Using DFDL for this purpose would remove the need for writing these pieces of software code and would directly make possible integrating TextGrid files in XML-based work-flows. Externalizing this dependency would make it possible to archive original Praat TextGrid data files and also keep them updated when the contained data is updated in any database.

XML structure of Praat TextGrid files

The current logical structure of the XML schema of TextGrid files is pictured below. The schema is not definite yet. The structure is meant to be simple and descriptive and map one-to-one to the textual format of TextGrid files.

<praat>
  <fileType>ooTextFile</fileType>
  <objectClass>TextGrid</objectClass>
  <xMin>0</xMin>
  <xMax>2</xMax>
  <tiersExists>exists</tiersExists>
  <numberOfTiers>10</numberOfTiers>
  <items>
    <item>
      <itemNum>1</itemNum>
      <class>IntervalTier</class>
      <name>word</name>
      <xMin>0</xMin>
      <xMax>2</xMax>
      <intervalsSize>8</intervalsSize>
      <intervals>
        <interval>
          <intervalNum>1</intervalNum>
          <xMin>0</xMin>
          <xMax>0.061199346418562</xMax>
          <text>noh</text>
        </interval>
        <!-- snip! -->
      </intervals>
    </item>
    <!-- snip! -->
    <item>
      <itemNum>10</itemNum>
      <class>IntervalTier</class>
      <name>other</name>
      <xMin>0</xMin>
      <xMax>2</xMax>
      <intervalsSize>1</intervalsSize>
      <intervals>
        <interval>
          <intervalNum>1</intervalNum>
          <xMin>0</xMin>
          <xMax>2</xMax>
          <text />
        </interval>
      </intervals>
    </item>
  </items>
</praat>

The example data originates from the Phonetic Corpus of Estonian Spontaneous Speech (direct link to the search engine).

Creating XML from Praat TextGrid files

The DFDL schema has been developed and tested using the open source tool Daffodil.

Parsing the example TextGrid file.

$ ../bin/daffodil parse --schema ./PraatTextGrid.dfdl.xsd ./examples/ekskfk_miski_1.TextGrid

Creating Praat TextGrid files from XML

Un-parsing the parsed example XML infoset back to TextGrid text file.

$ ../bin/daffodil unparse --schema ./PraatTextGrid.dfdl.xsd ./examples/ekskfk_miski_1.tdml