Record/Capture Android App Behavior - Convert To Animated GIF

前端 未结 6 1603
春和景丽
春和景丽 2020-12-28 14:58

I would like to capture/record the behavior of my Android app, running on an emulator and make a GIF image out it. Just like this one -

相关标签:
6条回答
  • 2020-12-28 15:00

    I can't comment because I'm too noob, but the answer above by shellhub is what I do as well and I think he deserves some votes!

    The only thing I would add to that answer is enabling show touches on the device as well: https://medium.theuxblog.com/enabling-show-touches-in-android-screen-recordings-for-user-research-cc968563fcb9

    EDIT: I've also found that I like using giphy capture: https://giphy.com/apps/giphycapture

    0 讨论(0)
  • 2020-12-28 15:05

    The Android Monitor mentioned in the answer is deprecated in the new Android Studio 3.0.

    According to the Documentation you can record a short video of your app like this:

    1. Open an app project.
    2. Run the app on a hardware device.
    3. Click View > Tool Windows > Logcat.
    4. Interact with the display on the hardware device to stage the start of the video.
    5. Click Screen Record in the left side of the Logcat window.
    6. In the Screen Recorder Options dialog, set the recording options:
      • Bit Rate: Enter a bit rate. The default is 4 Mbps.
      • Resolution: Enter a width and height value in pixels. The value must be a multiple of 16. The default is the resolution of the device.
      • Show Taps: Enables visual feedback for taps.
    7. Click Start Recording to start the recording.
    8. Click Stop Recording to stop the recording.
    9. In the Save As dialog, save the MP4 file.
    10. In the Screen Recorder dialog, click one of the buttons to show the file location, open the recording in a player, or dismiss the dialog.

    Now you can use http://ezgif.com or https://cloudconvert.com to convert the mp4 to an gif-file like Sally already mentioned.

    0 讨论(0)
  • 2020-12-28 15:06

    I found the easiest way (you have to update latest android studio & android monitory)

    • Click... option to open More Setting on Android Monitor
    • Select Screen Record option on left
    • Click START RECORDING Button to record video
    • Click STOP RECORDING Button to stop recording
    • Change WEBM format to GIF and save it
    • Enjoy...

    Watch video tutorial on YouTube

    0 讨论(0)
  • 2020-12-28 15:11

    First record video from AndroidStudio Select "Screen Record"

    and save .mp4 video then go to any online tools to convert mp4 to gif

    for example http://ezgif.com and https://cloudconvert.com

    0 讨论(0)
  • 2020-12-28 15:20

    If you are using emulator on windows, screentogif is a solid option, free, much more flexible and up to 10x smaller file sizes!

    basically you can capture any part of you screen and convert it to gif, in this case you capture where the emulator is open

    0 讨论(0)
  • 2020-12-28 15:25

    You can record a video from your emulator or real device using the standard ADB tool:

    adb shell screenrecord /sdcard/foo.mp4
    

    To convert the video from MP4 to animated GIF, use ffmpeg (again, a standard, open-source tool):

     ffmpeg -i foo.mp4 foo.gif
    

    Some refinements

    Given that phones nowadays have huge resolutions, a 10-second GIF can easily exceed several megabytes in size. To avoid that, record at a lower resolution by passing a --size XXXxYYY argument to screenrecord:

    adb shell screenrecord --size 1024x768 /sdcard/compact.mp4
    

    If you need to install ADB on Linux, just run sudo apt install adb.

    If you want to trim the beginning or the end of the video, pass the following arguments to ffmpeg:

    • -ss 00:00:05 - where to start (e.g. 5 seconds into the video)
    • -t 00:00:10 - total duration (e.g. 10 seconds)

    No need for video editors or to upload your possibly confidential screencast online.

    0 讨论(0)
提交回复
热议问题