We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
视频编码模式 SDK从v4.1.0开始支持265推流,可通过 setVideoCodecId(int) 接口设置。可取值有: AVConst.CODEC_ID_AVC 使用H264编码 AVConst.CODEC_ID_HEVC 使用H265编码
//创建KSYStreamer实例 mStreamer = new KSYStreamer(context); mStreamer.setVideoCodecId(AVConst.CODEC_ID_HEVC); 想设置H265编码,但调用此接口后,收不到推送的流,推流失败 H265编码该如何设置
The text was updated successfully, but these errors were encountered:
No branches or pull requests
视频编码模式
SDK从v4.1.0开始支持265推流,可通过 setVideoCodecId(int) 接口设置。可取值有:
AVConst.CODEC_ID_AVC 使用H264编码
AVConst.CODEC_ID_HEVC 使用H265编码
//创建KSYStreamer实例
mStreamer = new KSYStreamer(context);
mStreamer.setVideoCodecId(AVConst.CODEC_ID_HEVC);
想设置H265编码,但调用此接口后,收不到推送的流,推流失败
H265编码该如何设置
The text was updated successfully, but these errors were encountered: