From 792e5505b683933cdcef700ac607a5c43641ee41 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Tue, 25 Jun 2019 20:28:40 -0700 Subject: [PATCH] Update wave_info_reader.py --- wavinfo/wave_info_reader.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/wavinfo/wave_info_reader.py b/wavinfo/wave_info_reader.py index 3cb7bb6..5fa78f8 100644 --- a/wavinfo/wave_info_reader.py +++ b/wavinfo/wave_info_reader.py @@ -21,7 +21,7 @@ class WavInfoChunkReader: self.product = self._get_field(f,b'IPRD') #: 'IGNR' Genre self.genre = self._get_field(f,b'IGNR') - #: 'IUBJ' Supject + #: 'ISBJ' Supject self.subject = self._get_field(f,b'ISBJ') #: 'IART' Artist, composer, author self.artist = self._get_field(f,b'IART') @@ -80,7 +80,12 @@ class WavInfoChunkReader: 'keywords': self.keywords, 'title': self.title, 'source': self.source, - 'tape': self.tape + 'tape': self.tape, + 'commissioned': self.commissioned, + 'software': self.software, + 'archival_location':self.archival_location, + 'subject': self.subject, + 'technician':self.technician }