0 Useful Software Tools & Hardware
Loïc Dachary edited this page 2022-03-19 09:56:54 +01:00

Recording interviews

Mobile apps

Android has a useful, simple audio recording application built-in since Android 7.

Audio recorder

  • an audio recorder for little money (£€30-40).
  • a Galaxy Samsung SIII, S4, S5 with the default recorder app from lineageos

Audio recorder on GNU/Linux

To record a videoconference https://obsproject.com/

Transcribing interviews

  • OTranscribe
    • adb pull /sdcard/Music/SoundRecords /tmp
    • ffmpeg -i SoundRecord-2018-03-29-12-36-18.wav -vn -ar 44100 -ac 2 -ab 192k -f mp3 interview.mp3
    • chromium http://otranscribe.com/

If the volume of the recording is too low, it can be amplified with:

ffmpeg -i interview.mp3 -filter:a "volume=5.0" amplified.mp3