V2TXLivePusher
.The following is the relevant GUI that demonstrating camera push stream in the SDK API-Example project:
public class MApplication extends Application {@Overridepublic void onCreate() {super.onCreate();String licenceURL = ""; // your licence urlString licenceKey = ""; // your licence keyV2TXLivePremier.setEnvironment("GDPR"); // set your environmentV2TXLivePremier.setLicence(this, licenceURL, licenceKey);V2TXLivePremier.setObserver(new V2TXLivePremierObserver() {@Overridepublic void onLicenceLoaded(int result, String reason) {Log.i(TAG, "onLicenceLoaded: result:" + result + ", reason:" + reason);}});}
V2TXLivePusher
componentV2TXLivePusher
object, which will be responsible for publishing operations.// Specify the corresponding live broadcast protocol as RTMP, which does not support mic connectionV2TXLivePusher mLivePusher = new V2TXLivePusherImpl(this, V2TXLiveDef.V2TXLiveMode.TXLiveMode_RTMP);
TXCloudVideoView
object to display video images. Given that TXCloudVideoView
is inherited from FrameLayout
in Android, you can:<com.tencent.rtmp.ui.TXCloudVideoViewandroid:id="@+id/pusher_tx_cloud_view"android:layout_width="match_parent"android:layout_height="match_parent" />
startCamera
in V2TXLivePusher
to enable camera preview for your mobile phone. // Enable preview for the local cameraTXCloudVideoView mPusherView = (TXCloudVideoView) findViewById(R.id.pusher_tx_cloud_view);mLivePusher.setRenderView(mPusherView);mLivePusher.startCamera(true);mLivePusher.startMicrophone();
startCamera
to enable camera preview, you can call the startPush API in V2TXLivePusher
to start publishing.//This URL does not support co-anchoring. The stream is published to a live streaming CDN.String url = "rtmp://test.com/live/streamid?txSecret=xxxxx&txTime=xxxxxxxx";int ret = mLivePusher.startPush(url);if (ret == V2TXLIVE_ERROR_INVALID_LICENSE) {Log.i(TAG, "startRTMPPush: license verification failed");}
V2TXLivePusher
to stop publishing streams//Stop publishingmLivePusher.stopPush();
stopCamera
before startPush
.mLivePusher.startMicrophone();// The push stream can be started by passing in the corresponding URL according to the push stream protocol. The RTMP protocol starts with rtmp://, and this protocol does not support the connection of microphones.String url = "rtmp://test.com/live/streamid?txSecret=xxxxx&txTime=xxxxxxxx";int ret = mLivePusher.startPush(url);
V2TXLivePusher
to set the quality of videos watched by audience. The encoding parameters set determine the quality of videos presented to audience. The local video watched by the host is the original HD version that has not been encoded or compressed, and is therefore not affected by the settings. For details, please see Setting Video Quality.TXLiveConstants.java
.Beauty Filter Style | Description |
BEAUTY_STYLE_SMOOTH | The smooth style, which features more obvious skin smoothing effects and is suitable for live showrooms |
BEAUTY_STYLE_NATURE | The natural style, which retains more facial details and is more natural |
BEAUTY_STYLE_PITU | The Pitu style, which uses the beauty filter algorithm developed by YouTu Lab. Its effect is between the smooth style and the natural style, that is, it retains more skin details than the smooth style and delivers more obvious skin smoothing effects than the natural style. |
setBeautyStyle
API of TXBeautyManager
to set the beauty filter style.Item | Configuration | Description |
Beauty filter strength | Via the setBeautyLevel API in `TXBeautyManager` | Value range: 0-9. `0` means the filter is disabled. The greater the value, the more obvious the effect. |
Skin brightening filter strength | Via the setWhitenessLevel API in `TXBeautyManager` | Value range: 0-9. `0` means the filter is disabled. The greater the value, the more obvious the effect. |
Rosy skin filter strength | Via the setRuddyLevel API in `TXBeautyManager` | Value range: 0-9. `0` means the filter is disabled. The greater the value, the more obvious the effect. |
V2TXLivePusher
to get a TXBeautyManager instance to set color filters.setFilter
API in TXBeautyManager
to set color filters. Color filters are a technology that adjusts the color tone of sections of an image. For example, it may lighten the yellow sections of an image to achieve the effect of skin brightening, or add warm tones to a video to give it a refreshing and soft boost. setFilterStrength
API in TXBeautyManager
to set the strength of a color filter. The higher the strength, the more obvious the effect.setBeautyStyle
API in TXBeautyManager
to set the beauty filter style. The setBeautyStyle
API must be used together with setFilter
to produce richer effects. Given this, our designers have developed 17 built-in color filters for you to choose from. // Select the desired color filter file. The filter file can be obtained from the resource file of the Mini Live App (a .png file starting with tuibeauty_filter_).Bitmap filterBmp = decodeResource(getResources(), R.drawable.tuibeauty_filter_biaozhun);mLivePusher.getBeautyManager().setFilter(filterBmp);mLivePusher.getBeautyManager().setFilterStrength(0.5f);
V2TXLivePusher
provides a series of APIs for the control of devices. You can call getDeviceManager
to get a TXDeviceManager
instance for device management. For detailed instructions, please see TXDeviceManager API.V2TXLivePusher
to set the camera mirror mode, which affects the way video images are presented to audience. By default, the local video watched by the host is flipped when the front camera is used, which creates the same effect as a mirror does. The video watched by audience is the same as that watched by the host, as shown below.
V2TXLivePusher
outputs videos in portrait resolutions. You can publish landscape-mode videos to audience by modifying a parameter of the setVideoQuality
API.V2TXLiveDef.V2TXLiveVideoEncoderParam param = new V2TXLiveDef.V2TXLiveVideoEncoderParam(V2TXLiveDef.V2TXLiveVideoResolution.V2TXLiveVideoResolution960x540);param.videoResolutionMode = isLandscape ? V2TXLiveVideoResolutionModeLandscape : V2TXLiveVideoResolutionModePortrait;mLivePusher.setVideoQuality(param);
getAudioEffectManager
in V2TXLivePusher
to get a TXAudioEffectManager
instance, which can be used to mix background music and set in-ear monitoring, reverb, and other audio effects. Background music mixing means mixing into the published stream the music played by the host’s phone so that audience can also hear the music.enableVoiceEarMonitor
API in TXAudioEffectManager to enable in-ear monitoring, which allows hosts to hear their vocals in earphones when they sing.setVoiceReverbType
API in TXAudioEffectManager
to add reverb effects such as karaoke, hall, husky, and metal. The effects are applied to the videos watched by audience.setVoiceChangerType
API in TXAudioEffectManager
to add voice changing effects such as little girl and middle-aged man to enrich host-audience interaction. The effects are applied to the videos watched by audience.V2TXLivePusher
to add a watermark to videos output by the SDK. The position of the watermark is determined by the (x, y, scale)
parameter passed in.(x, y, scale)
parameter specifies the normalized coordinates of the watermark relative to the resolution of the published video. For example, if the resolution of the published video is 540 x 960, and (x, y, scale)
is set to (0.1, 0.1, 0.1)
, the actual pixel coordinates of the watermark will be (540 x 0.1, 960 x 0.1). The width of the watermark image will be the video width x 0.1, and the height will be scaled automatically.// Set a video watermarkmLivePusher.setWatermark(BitmapFactory.decodeResource(getResources(),R.drawable.watermark), 0.03f, 0.015f, 1f);
V2TXLivePusherObserver
. The event indicates poor network conditions for hosts, which result in stuttering for audience. When this event occurs, you can send a UI message about poor network conditions to hosts.@Overridepublic void onWarning(int code, String msg, Bundle extraInfo) {if (code == V2TXLiveCode.V2TXLIVE_WARNING_NETWORK_BUSY) {showNetBusyTips(); // Show network tips}}
V2TXLivePusher
to send SEI messages. SEI refers to the supplementary enhancement information of encoded video. It is not used most of the time, but you can insert custom information into SEI messages. The information will be forwarded to audience by live streaming CDNs. The applications for SEI messages include://Sample code for Androidint payloadType = 5;String msg = "test";mTXLivePusher.sendSeiMessage(payloadType, msg.getBytes("UTF-8"));
V2TXLivePlayer
, the built-in player of LiteAVSDK.int payloadType = 5;mTXLivePlayer.enableReceiveSeiMessage(true, payloadType)
V2TXLivePlayer
contain SEI messages, you will receive the messages via the onReceiveSeiMessage
callback in V2TXLivePlayerObserver
.Event ID | Code | Description |
V2TXLIVE_ERROR_FAILED | -1 | A common error not yet classified |
V2TXLIVE_ERROR_INVALID_PARAMETER | -2 | An invalid parameter was passed in during API calling. |
V2TXLIVE_ERROR_REFUSED | -3 | The API call was rejected. |
V2TXLIVE_ERROR_NOT_SUPPORTED | -4 | The API cannot be called. |
V2TXLIVE_ERROR_INVALID_LICENSE | -5 | Failed to call the API due to invalid license. |
V2TXLIVE_ERROR_REQUEST_TIMEOUT | -6 | The server request timed out. |
V2TXLIVE_ERROR_SERVER_PROCESS_FAILED | -7 | The server could not handle your request. |
Event ID | Code | Description |
V2TXLIVE_WARNING_NETWORK_BUSY | 1101 | Bad network connection: data upload blocked due to limited upstream bandwidth. |
V2TXLIVE_WARNING_VIDEO_BLOCK | 2105 | Stuttering during video playback. |
V2TXLIVE_WARNING_CAMERA_START_FAILED | -1301 | Failed to turn the camera on. |
V2TXLIVE_WARNING_CAMERA_OCCUPIED | -1316 | The camera is occupied. Try a different camera. |
V2TXLIVE_WARNING_CAMERA_NO_PERMISSION | -1314 | No access to the camera. This usually occurs on mobile devices and may be because the user denied the access. |
V2TXLIVE_WARNING_MICROPHONE_START_FAILED | -1302 | Failed to turn the mic on. |
V2TXLIVE_WARNING_MICROPHONE_OCCUPIED | -1319 | The mic is occupied. This occurs when, for example, the user is having a call on the mobile device. |
V2TXLIVE_WARNING_MICROPHONE_NO_PERMISSION | -1317 | No access to the mic. This usually occurs on mobile devices and may be because the user denied the access. |
V2TXLIVE_WARNING_SCREEN_CAPTURE_NOT_SUPPORTED | -1309 | The system does not support screen sharing. |
V2TXLIVE_WARNING_SCREEN_CAPTURE_START_FAILED | -1308 | Failed to start screen recording. If this occurs on a mobile device, it may be because the user denied the access. |
V2TXLIVE_WARNING_SCREEN_CAPTURE_INTERRUPTED | -7001 | Screen recording was stopped by the system. |
Was this page helpful?