tencent cloud

Video on Demand

動向とお知らせ
製品アップデート情報
製品紹介
製品概要
Product Features
製品の機能
製品の強み
ユースケース
ソリューション
購入ガイド
課金概要
課金方式
購入ガイドライン
請求書の照会
支払い更新の説明
支払い延滞の説明
返金説明
クイックスタート
コンソールガイド
コンソールの説明
サービスの概要
アプリケーション管理
メディア管理
リソースパック管理
License Management
プラクティスチュートリアル
メディアのアップロード
オンデマンドメディアファイルのインテリジェントコールド化方法
ビデオ処理
配信と再生
イベント通知の受信方法
オリジンサーバーのマイグレーションツール
Live Recording
カスタムオリジンサーバーback-to-originの方法
ライブストリーミングハイライトクリップを VOD に永続化するためのガイド
EdgeOne を使用して VOD コンテンツを配信する方法
開発ガイド
メディアアップロード
メディア加工処理
ビデオAI
イベント通知
ビデオ再生
メディアファイルのダウンロード
サブアプリケーションシステム
エラーコード
Player+ドキュメント
Overview
Basic Concepts
Features
Free Demo
Free Trial License
Purchase Guide
SDK Download
Licenses
Player Guide
Integration (UI Included)
Integration (No UI)
Advanced Features
API Documentation
Player Adapter
Player SDK Policy
よくあるご質問
モバイル端末再生に関するご質問
料金
ビデオのアップロード
ビデオの公開
ビデオの再生
Web側の再生
全画面表示再生
データ統計
CAM関連
メディア資産冷却に関する質問
Agreements
Service Level Agreement
VOD ポリシー
プライバシーポリシー
データ処理とセキュリティ契約
お問い合わせ
用語集

Integration Guide

PDF
フォーカスモード
フォントサイズ
最終更新日: 2024-04-26 11:09:31
This document describes how to quickly integrate RT-Cube's LiteAVSDK_Player for iOS into your project.

Environment Requirements

Xcode 9.0 or later
iPhone or iPad with iOS 9.0 or later
A valid developer signature for your project

Integrating the SDK

You can use CocoaPods to automatically load the SDK or manually download the SDK and import it into your project.

Integration via CocoaPods

1. Install CocoaPods.
Enter the following command in a terminal window (you need to install Ruby on your Mac first):
sudo gem install cocoapods
2. Create a Podfile.
Go to the directory of your project and enter the following command to create a Podfile in the directory.
pod init
3. Edit the Podfile.
Use CocoaPod's official source, which allows version selection. Edit the Podfile:
Directly integrate the latest version of TXLiteAVSDK_Player_Premium as a Pod:
platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'

target 'App' do
pod 'TXLiteAVSDK_Player_Premium'
end
To specify a version, you can add the following dependency to the podfile file:
pod 'TXLiteAVSDK_Player_Premium', '~> 110.8.29000'
4. Update the local repository and install the SDK.
Enter the following command in a terminal window to update the local repository file and install LiteAVSDK:
pod install
Or, run this command to update the local repository:
pod update
An XCWORKSPACE project file integrated with LiteAVSDK will be generated. Double-click to open the file.

Manual SDK integration

1. Download the package of the SDK and demo on the latest version of TXLiteAVSDK_Player_Premium.
2. Add SDK/TXLiteAVSDK_Player_Premium.framework to the project to be integrated and select Do Not Embed.
3. You need to configure -ObjC of the project target; otherwise, the SDK will crash as the SDK category cannot be loaded.
Open Xcode, select the target, select the **Build Settings** tab, search for "Other Link Flag", and enter "-ObjC".
4. Add library files (in the SDK directory)
TXFFmpeg.xcframework: Add the .xcframework file to the project, set it to Embed & Sign in General > Frameworks, Libraries, and Embedded Content, and check whether Code Sign On Copy is selected in Build Phases > Embed Frameworks in your project settings as shown below:
TXSoundTouch.xcframework: Add the .xcframework file to the project, set it to Embed & Sign in General > Frameworks, Libraries, and Embedded Content, and check whether Code Sign On Copy is selected in Build Phases > Embed Frameworks in your project settings as shown below:



Then, select Build Settings > Search Paths in Xcode and add the path of the above frameworks in Framework Search Paths.
MetalKit.framework: Open Xcode, go to your project settings, select Build Phases > Link Binary With Libraries, click + in the bottom-left corner, and enter "MetalKit" to add it to the project as shown below:



ReplayKit.framework: Open Xcode, go to your project settings, select Build Phases > Link Binary With Libraries, click + in the bottom-left corner, and enter "ReplayKit" to add it to the project as shown below:

Add the following system libraries in the same way:
System frameworks: SystemConfiguration, CoreTelephony, VideoToolbox, CoreGraphics, AVFoundation, Accelerate, and MobileCoreServices.
System libraries: libz, libresolv, libiconv, libc++, and libsqlite3.

Picture-in-picture (PiP) feature

To use the PiP feature, configure as shown below. If you don’t need the PiP feature, skip this part.
1. To use the PiP feature of iOS, upgrade the SDK to 10.3 or later.
2. To use the PiP feature, you need to enable the background mode. In Xcode, select the target, click Signing & Capabilities > Background Modes, and select Audio, AirPlay, and Picture in Picture as shown below:




Importing the SDK

There are two ways to import the SDK in your project code.
Method 1: import the SDK module in the files that need to use the SDK’s APIs in your project
@import TXLiteAVSDK_Player_Premium;
// If you are using the basic version of the player, please use: @import TXLiteAVSDK_Player;
Method 2: import a specific header file in the files that need to use the SDK’s APIs in your project
#import "TXLiteAVSDK_Player_Premium/TXLiteAVSDK.h"
// If you are using the basic version of the player, please use: #import "TXLiteAVSDK_Player/TXLiteAVSDK.h"

Configuring License

1. Enter VOD console. to apply for a trial license as instructed in Adding and Renewing a License. If no license is configured, video playback will fail. You will get two strings: a license URL and a decryption key.
2. After obtaining the License information, you need to initialize and configure the License before calling the relevant interfaces of the SDK. For detailed tutorials, please see Configuring View License.

FAQs

What should I do if a duplicate symbol error occurs because my project integrates multiple editions of LiteAVSDK such as CSS, TRTC, and Player?

If you integrate two or more editions of LiteAVSDK (MLVB, Player, TRTC, UGSV), a library conflict error will occur when you build your project. This is because some symbol files are shared among the underlying libraries of the SDKs. To solve the problem, we recommend you integrate the All-in-One SDK, which includes the features of MLVB, Player, TRTC, and UGSV. For details, see SDK Download.

How to call the API method of the SDK in Swift project?

If you want to call the API interface of the SDK in the Swift project, there are two ways:

Method 1: Using a bridging header file

1. Create a bridging header file, for example, ***-Bridging-Header.h, and add the following code: #import <TXLiteAVSDK_Player_Premium/TXLiteAVSDK.h>.
2. Configure the Objective-c Bridging header option in the Build Setting of the project. Set the path of the bridging file and add it to Objective-c Bridging header (e.g., $(SRCROOT)/SwiftCallOC/***-Bridging-Header.h, depending on the specific path of the project). Compile and run the project.

Method 2: Using the module.modulemap file in the SDK

1. Check if the TXLiteAVSDK_Player_Premium.framework contains the Modules - module.modulemap file (Player SDK provides it by default).
2. Configure the Swift Compiler - Search Paths option in the Build Setting of the project. Add the directory path where the module.modulemap file is located or the parent directory path. Here, it can be: ${PODS_ROOT}/TXLiteAVSDK_Player_Premium/TXLiteAVSDK_Player_Premium/TXLiteAVSDK_Player_Premium.framework/Modules (depending on the specific path of the project).
3. At the top of the class where you need to call the method, use import TXLiteAVSDK_Player_Premium to import and call the relevant methods.
For the above integration methods and demo, please refer to the GitHub demo for details.

ヘルプとサポート

この記事はお役に立ちましたか?

フィードバック