我想将我的Phantom 4视频从Android流式传输到像Wowza Server这样的流媒体服务器,这是可能的吗? 也许有人给我一些指示来做到这一点? 我正在尝试编写代码并具有此功能:
// The callback for receiving the raw H264 video data for camera live view
mReceivedVideoDataCallBack = new DJICamera.CameraReceivedVideoDataCallback() {
@Override
public void onResult(byte[] videoBuffer, int size) {
// Send the raw H264 video data to Wowza server here
}
};
通过我的研究,我们可以使用libstreaming Add a common Legend for combined ggplots来将手机Camera传输到Wowza服务器。但对于我的情况,数据是H264原始数据,我该如何流式传输?
提前谢谢!
答案 0 :(得分:0)