user430926
user430926

Reputation: 4057

Screen video recording android

Can anyone share app/ways to record current android screen device? i know this app: http://tandroidapk.blogspot.com/2011/12/screencast-video-recorder-android-app.html but somehow i can't installed it in my HTC Hero device.

Is there any other solution? I can't use emulator because I'm using accelerometer function Thanks.

Upvotes: 2

Views: 2607

Answers (4)

pelotasplus
pelotasplus

Reputation: 10052

I was using Telecine by Jake Wharton.

If you're interested in how this app works, lucky you as there is source code available at Github https://github.com/JakeWharton/Telecine

Upvotes: 0

Biswajit Karmakar
Biswajit Karmakar

Reputation: 9897

Enter into platform-tools directory from cmd

Follow this command to check if your device exist

H:\ANDROID\sdk\platform-tools>adb devices
List of devices attached
***********        device

Follow this command to record screen

H:\ANDROID\sdk\platform-tools>adb.exe shell screenrecord /sdcard/video.mp4
The max width/height supported by codec is 640x480

Press Ctrl+C to exit

Upvotes: 0

Christopher Fraser
Christopher Fraser

Reputation: 511

A few months I wrote a summary of the available root and non-root recorder apps here:

http://recordable.mobi/compare

In addition to apps there are some USB tools (e.g., Mobizen) that stream the screen across USB (limited by low USB bandwdith and can't record audio) and some devices can also transmit the screen over wifi, which can then captured on a separate device.

Upvotes: 2

Gopal Nair
Gopal Nair

Reputation: 840

Check out : http://blog.ribomation.com/droid-at-screen/

This will get your android device screen to your laptop. Use some screen recording software for PC/Mac (e.g.: Camtasia Studio) to do screen recording and save.

Upvotes: 5

Related Questions