Nils
Nils

Reputation: 1715

Android - capture screen of phone as a movie

for the documentation of a project I would like to record the screen of my Nexus One as a movie or at least in form of a lot of images, which I can convert into a movie. Is that possible? Is there an app for it? For the moment I only know about this screen capture functions in the SDK's tool directory.

Upvotes: 13

Views: 16658

Answers (4)

Alexei Volkov
Alexei Volkov

Reputation: 859

It is raithe handy to use android 4.x builtin method via adb shell screencap. I wrote a basic PyGtk adbcap wrapper to make it even more simple to use.

Upvotes: 0

lander16
lander16

Reputation: 941

I've use two tools and both work well:

  1. Androidscreencast fps 4-5
  2. Droid@Screen fps 30

Upvotes: 16

Pentium10
Pentium10

Reputation: 208022

As far I know you can only record screen of an Android device from a PC.

You need to use a tool that will put the phone's screen onto PC. For this you can use Droid@Screen . I use this tool for presentation purposes. Than on PC you use whatever screen recording app.

Upvotes: 2

Larry Smithmier
Larry Smithmier

Reputation: 2731

Do you need it from the device itself, or would from an emulator do? Here is a Nexus One Emulation Skin.

Here is information about the Dalvik Debug Monitor which claims to:

which provides port-forwarding services, screen capture on the device, thread and heap information on the device

(emphasis is mine) I am not an Android Developer, so I can't comment on the usefulness of the tool.

Upvotes: 2

Related Questions