Launch Floating Player (iOS)
let channelID = "Your encoded channel id"
let playlistID = "Your encoded playlist id"
var configuration = VideoFeedContentConfiguration()
VideoFeedViewController.openVideoPlayer(
source: .channelPlaylist(channelID: channelID, playlistID: playlistID),
playbackMode: .pinned, // Use pinned playback mode
feedConfiguration: configuration,
isPictureInPictureEnabled: true
) { result in
debugPrint("Opened player with result: \(result)")
}Last updated
Was this helpful?