1

It's 2014.

What's the best tool for recording a session on my computer that includes internal audio?

interstar
  • 253

3 Answers3

1

Try vokoscreen:

  1. Install it

    sudo apt-get install vokoscreen
    
  2. Check Settings

    vokoscreen - display settings vokoscreen - sound settings

  3. Start

user.dz
  • 48,105
user258438
  • 11
  • 1
1

I personally use this command in terminal

   avconv -f   pulse -i default -f x11grab -r 15 -s $(xdpyinfo  | grep dimensions | awk -F ' ' ' { print $2 } ' ) -i :0.0+0,0 -acodec libmp3lame -vcodec libx264  $(date +"%m%d%Y_%H%M%S_$HOSTNAME")_screencast.mp4

If you want a sophisticated one try this http://www.maartenbaert.be/simplescreenrecorder/

enter image description here

It's open source and looks nice.

EDIT:

For inline audio try this

pavucontrol

then switch to output devices then click on green check mark with tooltip Set as fallback

kenn
  • 5,162
  • I like the command line solution nice. But doesn't pick up internal audio. Just the microphone. :-( – interstar Jul 22 '14 at 13:51
  • how come? It records internal voice in my case. You may need to play with audio settings. – kenn Jul 22 '14 at 13:58
  • You would need to set the default source in PulseAudio as the Monitor of Builtin Analog Stereo (see here). That should make this work. – hal7df Jul 22 '14 at 14:04
  • I have used SimpleScreenRecorder and for me, it is the best for video + audio screencast on Linux today. It is lightweight, stable, but can produce good quality video. I recommend it for you. – Ade Malsasa Akbar Jul 22 '14 at 14:10
  • Ah ... but that simplescreenrecorder worked a treat. :-) – interstar Jul 22 '14 at 14:11
  • I guess what I was really looking for was a screenrecorder that could work out what audio I was trying to record. And the default of SSR (unlike recordmydesktop etc.) seemed to have figured it out. – interstar Jul 22 '14 at 14:12
  • 1
    @interstar For inline audio try this: pavucontrol > output devices then click on green check mark with tooltip Set as fallback – kenn Jul 22 '14 at 14:21
0

Try Kazam:

Kazam

I've never used it thoroughly (it didn't work on my computer, but that's probably because I have a special audio setup), but it looks like if you check the "Sound from Speakers" option, it will record what you're looking for.

hal7df
  • 656
  • 4
  • 14