Skip to content

maxstoller/bitmovin-player-ios-samples

 
 

Repository files navigation

bitmovin-player-ios-samples

This repository contains sample apps which are using the Bitmovin Player iOS SDK. The following sample apps are included at the moment:

  • BasicPlayback: Shows how the Bitmovin Player can be setup for basic playback of HLS or progressive streams.
  • BasicPlaybackTV: Shows how the Bitmovin Player can be setup for basic playback of HLS or progressive streams in a tvOS application.
  • BasicDRMPlayback: Shows how the Bitmovin Player can be setup and configured for playback of FairPlay Streaming protected content.
  • BasicCasting Shows how the ChromeCast support of the Bitmovin Player can be setup and configured.
  • BasicMetadataHandling Shows how the Bitmovin Player can be setup and configured for playback of content which contains metadata.
  • CustomHtmlUi Shows how the Bitmovin Player can be setup and configured to use a custom HTML UI. In addition this sample includes how to communication between the javascript UI and the native code.
  • BasicAds Shows how the Bitmovin Player can be setup and configured for playback of ads.
  • SystemUI Shows how the system UI can be used instead of Bitmovin's default UI.
  • BasicPlaylist Shows how to implement queueing / playlists.
  • BasicOfflinePlayback Shows how the Bitmovin Player can be used to download protected and unprotected content for offline playback.
  • BackgroundPlayback Shows how background playback can be implemented for the Bitmovin Player.
  • AdvancedCasting Shows how to implement advanced casting use cases.
  • BasicFullscreenHandling Shows how to use the BitmovinFullscreenHandler-protocol to implement basic fullscreen handling.

Using The Sample Apps

Please execute pod install to properly initialize the workspace. In each sample app you also have to add your Bitmovin Player license key to Info.plist file as BitmovinPlayerLicenseKey.

In addition to that you have to log in to https://dashboard.bitmovin.com, where you have to add the following bundle identifier of the sample application as an allowed domain under Player -> Licenses:

com.bitmovin.player.samples.playback.basic
com.bitmovin.player.samples.tv.playback.basic
com.bitmovin.player.samples.drm.basic
com.bitmovin.player.samples.casting.basic
com.bitmovin.player.samples.metadata.basic
com.bitmovin.player.samples.custom.ui.html
com.bitmovin.player.samples.ads.basic
com.bitmovin.player.samples.systemui
com.bitmovin.player.samples.playlist.basic
com.bitmovin.player.samples.offline.basic
com.bitmovin.player.samples.playback.background
com.bitmovin.player.samples.casting.advanced
com.bitmovin.player.samples.fullscreen.basic

Using The Bitmovin Player iOS SDK

When you want to develop an own iOS application using the Bitmovin Player iOS SDK read through the following steps.

Adding the SDK To Your Project

To add the SDK as a dependency to your project, you have two options: Using CocoaPods or adding the SDK bundle directly.

Using CocoaPods

  1. Add source 'https://github.com/bitmovin/cocoapod-specs.git' to your Podfile.
  2. Run pod repo update to add the newly added source.
  3. Add pod 'BitmovinPlayer', '2.40.0' to your Podfile.
  4. Install the pod using pod install.

See the Podfile of this repository for a full example.

Adding the SDK Directly

When using Xcode, go to the General settings page and add the SDK bundle (BitmovinPlayer.framework) under Linked Frameworks and Libraries. The SDK bundles for iOS and tvOS can be downloaded here.

Project Setup

  • Add your Bitmovin player license key to the Info.plist file as BitmovinPlayerLicenseKey.

    Your player license key can be found when logging in into https://dashboard.bitmovin.com and navigating to Player -> Licenses.

  • Add the Bundle identifier of the iOS application which is using the SDK as an allowed domain to the Bitmovin licensing backend. This can be also done under Player -> Licenses when logging in into https://dashboard.bitmovin.com with your account.

    When you do not do this, you'll get a license error when starting the application which contains the player.

Note for iOS 12

If you develop using XCode 10 targeting iOS 12 make sure you use a provisioning profile with Access WiFi Information enabled for the BasicCasting as well as for the AdvancedCasting sample.

Note for iOS 13

If you develop using XCode 11 targeting iOS 13 please make sure the NSBluetoothAlwaysUsageDescription key is set in the info.plist for both the BasicCasting and the AdvancedCasting samples.

Documentation And Release Notes

  • You can find the latest API documentation here.
  • The release notes can be found here.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 82.2%
  • Objective-C 13.8%
  • Ruby 2.4%
  • TypeScript 1.6%