Wendell mentioned on one of the Linux videos that he used Open screen recorder. After searching for a while I couldn't find it, does anyone kn ow where to get it?
Well Logan set that up on his pc, so I assume Wendell might have the some program since the program is great and just simply works.
Do you know where to get it?
I use the following command to record my screen:
avconv -f x11grab -r 30 -s 1920x1080 -i :0.0 -vcodec libx264 -threads 4 $HOME/output.avi
The file output location can be changed by changing the "$HOME/output.avi" at the end of the command. THe quality is really good and the file size is small.
1 Like
Here is post of the OBS forum of how to get everything setup and they have a lot of of linux posts as well.
https://obsproject.com/forum/threads/how-to-stream-on-linux.4594/
That's a rather rudimentary way about it no offence.
in regards to OP's request install OBS with this.
sudo apt-add-repository ppa:kirillshkrogalev/ffmpeg-next
sudo apt-add-repository ppa:obsproject/obs-studio
sudo apt-get update
sudo apt-get install ffmpeg obs-studio
1 Like