Add streamIdentifier to audio stream export

This commit is contained in:
JonnyWong16
2020-11-25 21:27:58 -08:00
parent 1ab87e5334
commit 2089172384
2 changed files with 5 additions and 2 deletions

View File

@@ -331,6 +331,7 @@ class AudioStream(MediaPartStream):
self.profile = data.attrib.get('profile')
self.requiredBandwidths = data.attrib.get('requiredBandwidths')
self.samplingRate = cast(int, data.attrib.get('samplingRate'))
self.streamIdentifier = cast(int, data.attrib.get('streamIdentifier'))
# For Track only
self.albumGain = cast(float, data.attrib.get('albumGain'))