6

I wanna record my screen and audio, Is It Possible? how to do that?
I use Raspberry Pi 4 Model B.

I still new, I hope you can help. thanks.

Mohi Rostami
  • 4,434
  • 1
  • 20
  • 39
Kevin
  • 161
  • 1
  • 3

3 Answers3

4

Kazam is another great screen recorder. It's graphical, easy to use, and has a ton of features.

To install it:

1) Open a terminal (click on the raspberry icon in the task bar, go down to Accessories, and then click on Terminal)

2) Type in sudo apt-get update then sudo apt-get install kazam

3) To run it, you can launch it from the taskbar (you'll find it under the raspberry icon in a submenu) or type in kazam from the terminal.

Kazam screenshot

user96931
  • 739
  • 2
  • 9
  • 22
2

recordMyDesktop is here for you. It captures what you are watching on the screen and also saves all audio input/output.

You can use it by the terminal and also it has a GUI like the image below:

enter image description here

Update repository:

sudo apt-get update

Install the package:

sudo apt-get install recordmydesktop

Start recording/capturing:

recordmydesktop myCapture.ogv

To stop the process hit Ctrl + C and then it will save a .ogv file in the current path.


More configuration on man page of this package.

Mohi Rostami
  • 4,434
  • 1
  • 20
  • 39
2

Vokoscreen works well on Raspberry Pi OS.

sudo apt install vokoscreen

VLC was not able to play the default format MKV recordings Vokoscreen makes for me, but you can play them with ffplay (part of FFmpeg):

ffplay -i ~/Videos/screencast.mkv
Adam
  • 153
  • 1
  • 7