Record/Capture Android App Behavior - Convert To Animated GIF

谁说胖子不能爱 提交于 2019-11-29 11:41:54

问题


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 -


回答1:


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




回答2:


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.




回答3:


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




回答4:


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.




回答5:


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



来源:https://stackoverflow.com/questions/34702296/record-capture-android-app-behavior-convert-to-animated-gif

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!