V2TXLivePlayer
, including player status, playback volume, first audio/video frame, statistics, and warning and error messages.- (void)setObserver:(id<V2TXLivePlayerObserver>)observer
Parameter | Type | Description |
observer | V2TXLivePlayerObserver |
- (V2TXLiveCode)setRenderView:(TXView *)view
Parameter | Type | Description |
view | TXView * | The player’s rendering view |
V2TXLIVE_OK
: successful- (V2TXLiveCode)startLivePlay:(NSString *)url
startPlay
has been replaced by startLivePlay
, and you need to call V2TXLivePremier#setLicence
or TXLiveBase#setLicence
to set the license to use the live playback feature (you only need to set the license once). Otherwise, playback will fail (black screen). You can use a live stream publishing license, UGSV license, or video playback license to activate the live playback feature. If you don’t have any of the licenses, you can buy one or apply for a trial license for free.Parameter | Type | Description |
url | NSString * | Playback URL of audio/video streams, which supports RTMP, HTTP-FLV, TRTC, and WebRTC |
V2TXLIVE_OK
: successfulV2TXLIVE_ERROR_INVALID_PARAMETER
: operation failed because the URL is invalid.V2TXLIVE_ERROR_REFUSED
: RTC does not support using the same stream ID for publishing and playback on the same device.- (V2TXLiveCode)stopPlay;
V2TXLIVE_OK
: successful- (int)isPlaying
1
: yes0
: no- (V2TXLiveCode)setRenderRotation:(V2TXLiveRotation)rotation
Parameter | Type | Description |
rotation | The degrees by which images are rotated. Default value: 0. |
V2TXLIVE_OK
: successfulV2TXLiveRotation
enumerated valuesValue | Description |
V2TXLiveRotation0 | No rotation |
V2TXLiveRotation90 | Rotate 90 degrees clockwise |
V2TXLiveRotation180 | Rotate 180 degrees clockwise |
V2TXLiveRotation270 | Rotate 270 degrees clockwise |
- (V2TXLiveCode)setRenderFillMode:(V2TXLiveFillMode)mode
Parameter | Type | Description |
mode | The image fill mode. Default value: V2TXLiveFillModeFit . |
V2TXLIVE_OK
: successfulV2TXLiveFillMode
enumerated valuesValue | Description |
V2TXLiveFillModeFit | The image fits the screen without cropping. If the aspect ratio of the image and the screen do not match, there will be black bars. |
V2TXLiveFillModeFill | The image fills the entire screen, without black bars. If the aspect ratio of the image and screen do not match, the parts of the image that don’t fit will be cropped. |
- (V2TXLiveCode)pauseVideo
V2TXLIVE_OK
: successful- (V2TXLiveCode)resumeVideo
V2TXLIVE_OK
: successfulV2TXLIVE_OK
is returned, you can get the screenshot taken in the [V2TXLivePlayerObserver onSnapshotComplete: image:]
callback.- (V2TXLiveCode)snapshot
V2TXLIVE_OK
: successfulV2TXLIVE_ERROR_REFUSED
: failed to take a screenshot because playback has stopped.[V2TXLivePlayerObserver onRenderVideoFrame:frame:]
callback.- (V2TXLiveCode)enableCustomRendering:(BOOL)enablepixelFormat:(V2TXLivePixelFormat)pixelFormatbufferType:(V2TXLiveBufferType)bufferType
Parameter | Type | Description |
enable | BOOL | Whether to enable custom rendering. Default value: NO . |
pixelFormat | V2TXLivePixelFormat | Pixel format of the video called back for custom rendering |
bufferType | V2TXLiveBufferType | Buffer type of the video called back for custom rendering |
V2TXLIVE_OK
: successfulV2TXLIVE_ERROR_NOT_SUPPORTED
: unsupported pixel format or data format.V2TXLivePixelFormat
enumerated valuesValue | Description |
V2TXLivePixelFormatUnknown | Unknown |
V2TXLivePixelFormatI420 | YUV420P (I420) |
V2TXLivePixelFormatNV12 | YUV420SP (NV12) |
V2TXLivePixelFormatBGRA32 | BGRA8888 |
V2TXLivePixelFormatTexture2D | OpenGL 2D texture |
V2TXLiveBufferType
enumerated valuesValue | Description |
V2TXLiveBufferTypeUnknown | Unknown |
V2TXLiveBufferTypePixelBuffer | This type can be used directly and is the most efficient. The iOS system provides various APIs to get or process pixel buffers. |
V2TXLiveBufferTypeNSData | This type affects performance to some extent because the process of converting NSData to PixelBuffer (the format the SDK can handle directly) involves memory copying. |
V2TXLiveBufferTypeTexture | Texture ID, which allows direct operation and delivers the best performance. |
- (V2TXLiveCode)pauseAudio
V2TXLIVE_OK
: successful- (V2TXLiveCode)resumeAudio
V2TXLIVE_OK
: successful- (V2TXLiveCode)setPlayoutVolume:(NSUInteger)volume;
Parameter | Type | Description |
volume | NSUInteger | Volume. Value range: 0-100. Default value: 100 . |
V2TXLIVE_OK
: successful[V2TXLivePlayerObserver onPlayoutVolumeUpdate:volume:]
callback.- (V2TXLiveCode)enableVolumeEvaluation:(NSUInteger)intervalMs
Parameter | Type | Description |
intervalMs | NSUInteger | Interval (ms) for triggering the onPlayoutVolumeUpdate callback. The minimum interval allowed is 100 ms. If the value is 0 (default) or smaller, the callback is disabled. 300 is recommended. |
V2TXLIVE_OK
: successful- (V2TXLiveCode)setCacheParams:(CGFloat)minTime maxTime:(CGFloat)maxTime
Parameter | Type | Description |
minTime | CGFloat | The minimum cache time for auto adjustment by the player. The value must be greater than 0 . Default value: 1 |
maxTime | CGFloat | The maximum cache time for auto adjustment by the player. The value must be greater than 0 . Default value: 5 |
V2TXLIVE_OK
: successfulV2TXLIVE_ERROR_INVALID_PARAMETER
: operation failed. minTime
and maxTime
must be greater than 0
.V2TXLIVE_ERROR_REFUSED
: you cannot change the cache policy while streams are being played.- (void)showDebugView:(BOOL)isShow
Parameter | Type | Description |
isShow | BOOL | Whether to show the debug view. Default value: NO . |
Was this page helpful?