You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I transfer TS files to TV through connect SDK, there will be an error message
`
mMediaPlayer.load(mApiClient, mediaInformation, true).setResultCallback(new ResultCallback() {
@Override
public void onResult(MediaChannelResult result) {
Status status = result.getStatus();
if (status.isSuccess()) {
webAppSession.mLaunchSession.setSessionType(LaunchSessionType.Media);
mMediaPlayer.setActiveMediaTracks(mApiClient, new long[]{MEDIA_TRACK_ID});
Util.postSuccess(listener, new MediaLaunchObject(webAppSession.mLaunchSession, CastService.this));
} else {
Util.postError(listener, new ServiceCommandError(status.getStatusCode(), status.getStatusMessage(), status));
}
}
});
`
the result of status is not success. so I would like to know if it is not supported for TS files。Thank you.
The text was updated successfully, but these errors were encountered:
When I transfer TS files to TV through connect SDK, there will be an error message
`
mMediaPlayer.load(mApiClient, mediaInformation, true).setResultCallback(new ResultCallback() {
`
the result of status is not success. so I would like to know if it is not supported for TS files。Thank you.
The text was updated successfully, but these errors were encountered: