This guide provides an introduction to the 2.x Programmable Video iOS SDK and a set of guidelines to migrate an application from 1.x to 2.x.
The Video SDK defines a set of objects that represent a multi-party exchange of media. These objects fall into two types of models: Room model and Media model.
In Programmable Video 1.x the Room model was comprised of a TVIRoom
, a TVILocalParticipant
, and one or more TVIParticipant
(s). Starting with Programmable Video 2.x, the Room model is now comprised of a TVIRoom
, a TVILocalParticipant
, and one or more TVIRemoteParticipant
(s). The TVILocalParticipant
and TVIRemoteParticipant
(s) extend the TVIParticipant
base class.
In Programmable Video 1.x TVILocalParticipant
and TVIParticipant
were comprised of TVITrack
(s). Programmable Video 2.x introduces the TVITrackPublication
base class which is extended by the following objects:
TVILocalAudioTrackPublication
TVILocalVideoTrackPublication
TVILocalDataTrackPublication
TVIRemoteAudioTrackPublication
TVIRemoteVideoTrackPublication
TVIRemoteDataTrackPublication
TVITrackPublication
(s) represent the tracks available in a Room comprised of media from TVILocalParticipant
and TVIRemoteParticipant
(s). TVILocalTrackPublication
(s) are available via TVILocalParticipant
and TVIRemoteTrackPublication
(s) are available via TVIRemoteParticipant
. The following graph visualizes the Room model updates from 1.x to 2.x.
Room Model Migration
In Programmable Video 1.x the Media model was comprised of a TVITrack
base class extended by a TVIAudioTrack
and TVIVideoTrack
. TVILocalAudioTrack
and TVILocalVideoTrack
extend TVIAudioTrack
and TVIVideoTrack
respectively. The Programmable Video 2.x Media model maintains the same relationship between TVITrack
and TVIAudioTrack
/TVIVideoTrack
and introduces a new implementation of TVITrack
: TVIDataTrack
(For more on DataTracks, see guide). TVIAudioTrack
, TVIVideoTrack
, and TVIDataTrack
are extended by the following objects:
TVILocalAudioTrack
TVILocalVideoTrack
TVILocalDataTrack
TVIRemoteAudioTrack
TVIRemoteVideoTrack
TVIRemoteDataTrack
The following graph visualizes the Media model updates from 1.x to 2.x.
Media Model Migration
The following diagrams define all objects and their relationships in the 1.x and 2.x Video SDK.
Video iOS 1.x Object Graph
Video iOS 2.x Object Graph
This section provides a set of guidelines to migrate an application from Programmable Video iOS SDK 1.x to 2.x.
Reference the 2.0 quickstart when migrating an application from Programmable Video iOS 1.x to 2.x
Participant events moved from TVIParticipantDelegate
to TVIRemoteParticipantDelegate
. Reference the API docs for more information on TVIRemoteParticipantDelegate
.
In Programmable Video 1.x, applications manage media shared by participants when tracks are added or removed. Starting with Programmable Video 2.x, applications should manage media when tracks are subscribed or unsubscribed. Rendering video when a participant shares a video track provides an example of logic that will need to be updated when migrating to 2.x. In 1.x an application receives [TVIParticipantDelegate participant:addedVideoTrack:]
or [TVIParticipantDelegate participant:removedVideoTrack:]
delegate callback to render or remove the video track from the UI. In 2.x applications should use [TVIRemoteParticipantDelegate subscribedToVideoTrack:publication:forParticipant:]
and [TVIRemoteParticipantDelegte unsubscribedFromVideoTrack:publication:forParticipant:]
to perform video rendering logic.
Applications using TVILocalParticipant
to share tracks need to perform the following updates:
addAudioTrack:
to publishAudioTrack:
addVideoTrack:
to publishVideoTrack:
removeAudioTrack:
to unpublishAudioTrack:
removeVideoTrack:
to unpublishVideoTrack:
TVIParticipant
remains an object in the SDK, but applications should perform the following updates when migrating to Programmable Video iOS 2.x:
TVIParticipant
to TVIRemoteParticipant
[TVIRoom participants]
to [TVIRoom remoteParticipants]