Changelog
1.6.1 - 2018-03-27
Changed
Fixed a bug in access handling which made some videos unavailable in certain conditions.
1.6 - 2018-02-12
Added
- Added DoubleClick for Publishers support.
- Added background playback support controlled by the
continuePlaybackInBackground
property. - Added a
defaultSubtitle
property in order to expose the stream’s default subtitle.
Removed
- Removed localization from the framework. Application developer can still localize the SDK texts based on the keys documented in readme.
1.5.1 - 2018-01-16
Changed
- Improved handling of low network bandwidth related player stall events.
1.5 - 2017-12-05
Added
- Added new property
isLive
and delegate method- (void)playerLiveStateDidChange:(USUstreamPlayer *)player
for reporting if the player is playing a channel with live content in it.
Changed
isPlayingLiveStream
deprecated inUSUstreamPlayer
in favor ofmediaDescriptor.isChannel
.isLive
deprecated inUSMediaDescriptor
in favor ofisChannel
.+ (instancetype)liveDescriptorWithID:(NSString *)channelID
deprecated inUSMediaDescriptor
in favor of+ (instancetype)channelDescriptorWithID:(NSString *)channelID
.
1.4 - 2017-10-02
Added
USPrebufferingController
to support faster playback start.USMediaDescriptor
to represent a playable content.- (void)playMedia:(USMediaDescriptor *)mediaDescriptor
added toUSUstreamPlayer
.
Changed
- (void)playChannel:(NSString *)channelId
deprecated inUSUstreamPlayer
in favor of- (void)playMedia:(USMediaDescriptor *)mediaDescriptor
.- (void)playRecorded:(NSString *)recordedId
deprecated inUSUstreamPlayer
in favor of- (void)playMedia:(USMediaDescriptor *)mediaDescriptor
.- New sample (Newsfeed Sample) added to demonstrate the usage of
USPrebufferingController
.
1.3.2 - 2017-09-12
Changed
- Improved the quality of stream versions targeted for low bandwidth networks.
- Starting playback with a stream version that fits better to network conditions.
- We fixed a bug related to subtitle handling.
1.3 - 2017-07-20
Added
- Added new property
broadcastStartDate
and delegate methodplayerBroadcastStartDateDidChange:
for reporting the start date of live broadcasts.