Sunday, 16 February 2014

Record screen action (capture video) on Android KitKat



Android KitKat provide a new feature to record screen action.

To record video on Android KitKat:

    Enable developer options on KitKat
    Connect your KitKat device to your PC.
    In your PC, run:
    $ adb shell screenrecord /sdcard/video.mp4

To stop recording:

    Press Control-C on your PC

Your recorded video will be in /sdcard/video.mp4 on your Android KitKat device.

No comments:

Post a Comment

Pass a HashMap from Angular Client to Spring boot API

This example is for the case where fileData is very huge and in json format   let map = new Map<string, string>()      map.set(this.ge...