Marce666 Posted January 8, 2015 Share Posted January 8, 2015 Hi,I could integrate MumbleKit into a iOS project. It works fine :)Now I need to record conversations locally at the device to reproduce them later.I saw a variable name isRecording in MKUser, but it is private and I cannot access it.How can I record this conversation?Thanks in advance,Marce. Link to comment Share on other sites More sharing options...
Administrators mkrautz Posted January 10, 2015 Administrators Share Posted January 10, 2015 There is no recording functionality in MumbleKit itself.However, it is possible to hack something onto MumbleKit itself.For example, here's the point where the clients own mic data is handled: https://github.com/mumble-voip/mumblekit/blob/master/src/MKAudioInput.m#L169And here's where everyone's voices are mixed together and written to the output buffer:https://github.com/mumble-voip/mumblekit/blob/master/src/MKAudioOutput.m#L73 Link to comment Share on other sites More sharing options...
Marce666 Posted January 15, 2015 Author Share Posted January 15, 2015 Hi,About short * frame at https://github.com/mumble-voip/mumblekit/blob/master/src/MKAudioOutput.m#L73 [_device setupOutput:^BOOL(short *frames, unsigned int nsamp) { return [self mixFrames:frames amount:nsamp]; }]; How can I convert those frames into a mp3 or wav or something to storage the audio ?I need to record the whole conversation input and output.Thanks in advance, Marce. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now