0 purchases
tpstreams player sdk
TPStreams Flutter player SDK #
To use this package, add tpstreams_player_sdk as a dependency in your pubspec.yaml file.
Initializing TPStreamsSDK #
First, imported our package:
import 'package:tpstreams_player_sdk/tpstreams_player_sdk.dart';
copied to clipboard
Next, you can initialize the TPStreamsSDK with your organization code.
TPStreamsSDK.initialize(orgCode: "YOUR_ORG_CODE");
copied to clipboard
Make sure to replace "YOUR_ORG_CODE" with your actual organization code. This code snippet should be placed at the entry point of your application (usually in the main function) to ensure proper initialization of the TPStreamsSDK.
Play a Video #
To play a video using the TPStreams Player SDK, use the TPStreamPlayer widget:
TPStreamPlayer(assetId: 'ASSET_ID', accessToken: 'ACCESS_TOKEN');
copied to clipboard
Replace ASSET_ID and ACCESS_TOKEN with the actual assetId and accessToken of the video you wish to play. After executing your Flutter application, the TPStreams player will display the video specified by the provided assetId and accessToken.
For a practical implementation and usage of tpstreams_player_sdk, refer to our Sample Flutter App.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.