这可能是一个类似的问题: https://stackoverflow.com/questions/16453858/android-stream-and-record-at-the-same-time
我尝试在Android上制作实时视频流,并使用spydroid库,效果非常好。
但问题是我需要同时将视频流和视频录制到SD卡。但是,在代码中,setOutputFile()
指定了套接字的文件描述符:
createSockets();
// We write the ouput of the camera in a local socket instead of a file !
// This one little trick makes streaming feasible quiet simply: data from the camera
// can then be manipulated at the other end of the socket
mMediaRecorder.setOutputFile(mSender.getFileDescriptor());
在这里,mSender
是LocalSocket
对象。
但是就像你们已经知道的那样,要在Android中将视频录制到SD卡,我们应该指定setOutputFile()
方法的文件路径。但我们不能同时做到这两点。
如果我在客户端录制实时视频,那么我可以这样做,但我想在服务器端进行。
你有任何想法或想法吗?小提示对我很有帮助。在此先感谢:)