有人请告诉我如何录制视频,因为我使用视频核心库直播它到wows服务器..?
我研究了很多。但找不到解决方案。我可以通过在VCSimpleSession.mm中取消注释此部分来录制视频吗?但是如何..?任何帮助深表感谢。谢谢。
/*m_muxer = std::make_shared<videocore::Apple::MP4Multiplexer>();
videocore::Apple::MP4SessionParameters_t parms(0.) ;
std::string file = [[[self applicationDocumentsDirectory] stringByAppendingString:@"/output.mp4"] UTF8String];
parms.setData(file, self.fps, self.videoSize.width, self.videoSize.height);
m_muxer->setSessionParameters(parms);
m_aacSplit->setOutput(m_muxer);
m_h264Split->setOutput(m_muxer);*/