[Solved] Android Skype recorder [closed]


As the community ratings suggest, you should try to give us code that isn’t working and specifically ask for something that volunteers can fix.

Besides that point, here’s what i do know from past experiences with Android and recording:

  • for your app to record what is being displayed on the screen, you need access to the /dev0 graphics buffer, which is impossible unless you have your device rooted.
  • Most android devices do not allow you to record voice data either. (not sure if you can when you root it, my guess is that you can, but would be still a hassle). There are ways to hack around this, i would look around other parts of stack overflow for this.

It depends on what your need for the application is. If you are trying to only get this app to work between a small number of people, then you may be able to download the Skype apk and reverse engineer it using Eclipse, a Java Decompiler and a dedexer (something like dex2jar). Then root the device to get access to the video and sound buffer to record the data stream.

i DO NOT recommend this approach, and even attempting so might not guarantee that you can do it (especially if Skype uses proguard to obfuscate their code).

3

solved Android Skype recorder [closed]