Wowza Media Server 3.1.2 and greater by default reports a Apple HLS compatibility version of 3:
Code:
EXT-X-VERSION:3
Code:
<Property>
<Name>cupertinoExtXVersion</Name>
<Value>3</Value>
<Type>Integer</Type>
</Property>
- Floating Point Duration: If the EXT-X-VERSION value is 3 or greater Wowza Media Server will represent chunk durations using more accurate floating point durations rather than whole integer durations.
- CODECS Format: If the EXT-X-VERSION value is 4 or greater Wowza Media Server will represent the CODECS values in the playlist.m3u8 reponses using the post-iOS 4.0 format (ex. avc1.42001e) and if the value is less than 4 the pre-iOS 4.0 format (ex. avc1.66.30) will be used.
Each of these features can be controlled indepently from the EXT-X-VERSION version using the following HTTPStreamer/Properties properties:
Floating Point Duration
Code:
<Property>
<Name>cupertinoFloatingPointDurations</Name>
<Value>true</Value>
<Type>Boolean</Type>
</Property>
Code:
<Property>
<Name>cupertinoCodecStringFormatId</Name>
<Value>2</Value>
<Type>Integer</Type>
</Property>
- 1: Pre iOS 4.0 (ex. avc1.66.30)
- 2: Post iOS 4.0 (ex. avc1.42001e)


Article List
Categories