Update wave_info_reader.py

This commit is contained in:
Jamie Hardt
2019-06-25 20:28:40 -07:00
committed by GitHub
parent 8f575c5131
commit 792e5505b6

View File

@@ -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
}