diff --git a/docs/source/metadata_scopes/bext.rst b/docs/source/metadata_scopes/bext.rst index 3d67ee7..143cfde 100644 --- a/docs/source/metadata_scopes/bext.rst +++ b/docs/source/metadata_scopes/bext.rst @@ -9,11 +9,12 @@ which includes a 256-character free text descrption, creating entity identifier recording application or equipment), the date and time of recording and a time reference for timecode synchronization. -The :py:attr:`coding_history` is designed to contain a record of every conversion performed on the audio +The :py:attr:`coding_history` is designed to contain a record of every conversion performed on the audio file. In this example (from a Sound Devices 702T) the bext metadata contains scene/take slating -information in the :py:attr:`description`. Here also the :py:attr:`originator_ref` is a serial number conforming +information in the :py:attr:`description`. +Here also the :py:attr:`originator_ref` is a serial number conforming to EBU Rec 99. If the bext metadata conforms to `EBU 3285 v1`_, it will contain the WAV's 32 or 64 byte `SMPTE diff --git a/wavinfo/wave_bext_reader.py b/wavinfo/wave_bext_reader.py index a2a9561..b27acae 100644 --- a/wavinfo/wave_bext_reader.py +++ b/wavinfo/wave_bext_reader.py @@ -29,9 +29,9 @@ class WavBextReader: self.originator : str = sanitize_bytes(unpacked[1]) #: A unique identifier for the file, a serial number. self.originator_ref : str = sanitize_bytes(unpacked[2]) - #: Date of the recording, in the format YYY-MM-DD + #: Date of the recording, in the format YYYY-MM-DD in the local calendar self.originator_date : str = sanitize_bytes(unpacked[3]) - #: Time of the recording, in the format HH:MM:SS. + #: Time of the recording, in the format HH:MM:SS on the local clock self.originator_time : str = sanitize_bytes(unpacked[4]) #: The sample offset of the start of the file relative to an #: epoch, usually midnight the day of the recording.