Screen video recording android

后端 未结 4 713
小鲜肉
小鲜肉 2021-01-07 01:45

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 so

相关标签:
4条回答
  • 2021-01-07 01:48

    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.

    0 讨论(0)
  • 2021-01-07 01:53

    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

    0 讨论(0)
  • 2021-01-07 01:55

    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

    0 讨论(0)
  • 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.

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