Check whether the video source is normal.
Troubleshooting
- Possible causes related to the video source
- Check whether the video source is normal. Make sure that no error occurs during transcoding.
- Check whether the frame rate and bitrate of the ingested stream are correct. Make sure that no error occurs during the stream ingest.
- Possible causes not related to the video source
Check whether the player adopts soft decoding. You can use an SDK to call the
setDefaultDecoderoperation and set the type parameter to 1. Before you reinstall an Android package, uninstall the existing one and restart the computer to avoid the impacts of cached data.setDefaultDecoder:- Description: sets the default decoder.
- Parameter: type, which specifies the decoding mode. The value 0 indicates hard decoding. The value 1 indicates soft decoding.Note The default value is 1, which indicates soft decoding. Hardware decoding errors may occur on Android mobile phones due to hardware inadaptability. Therefore, we recommend that you use software decoding.
- Example:
public void setDefaultDecoder(int decoderType);