Record Android Audio Output

后端 未结 5 1379
北荒
北荒 2020-11-30 04:01

Many people are asking for this, no one seems to have an answer so I do neither.

How is it possible that some apps serve the function to record the audio output of t

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 04:29

    TL;DR : use the SCR Screen Recorder app to capture video + internal audio (not microphone) [require root]

    Long answer

    Original answer: Record tablet's screen AND audio

    Jeff's answer seems to be the only way you can use through adb. But that force you to do some work (merge video + audio).

    I could do it this way :

    - connect the Android device to computer with a jack cable (headphone output to microphone input);
    - record video with adb shell;
    - record audio with Audacity (or anything else)
    - then merge video and audio with a video editor (pitivi, openshot, avconv...)
    

    Another way is to directly use an android app:

    • SCR Screen Recorder - official website - XDA - short review
    • Mobizen for SAMSUNG - google play
    • RecMe - google play

    SCR Screen Recorder:

    • pros :
      • the only app that truly works for recording video + internal audio with all devices
    • cons:
      • banned from google play because of SELinux policy (see XDA - Google Play ban and "Dangerous app" warning)
      • require root for recording internal audio

    Mobizen for SAMSUNG:

    • pros
      • on google play store
    • cons
      • only the samsung version works for recording internal audio, the general or LG, XIAOMI version can't record internal audio
      • still a beta feature
      • require root for recording internal audio

    RecMe:

    • pros
      • on google play store
    • cons
      • internal audio recording doesn't works on most devices
      • require root for recording internal audio

    Personally I tried a lot of apps and the only working for me is SCR Screen Recorder.

    PS : all these apps works without root if not using internal audio.

提交回复
热议问题