Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
06-15-2017, 03:47 PM
|
#1
|
LQ Newbie
Registered: Jun 2017
Posts: 2
Rep:
|
What app allows me to record my screen?
Hey, I'm new here, I'm a gamer, and I do game recordings, I wanted to download ps4 remote play that allows me to play my ps4 game on my computer, and I like recording my gameplays, especially gameplays that don't have block notification pop up that covers the half of the video screen, and I wonder if there's any apps that would allow me to record my computer screen
Last edited by shadow.ninja71693; 06-15-2017 at 03:51 PM.
Reason: my keyboard doesn't function the way it suppose to(miss spelling)
|
|
|
06-15-2017, 03:48 PM
|
#2
|
Member
Registered: May 2017
Location: U.S.
Distribution: Un*x
Posts: 237
Rep:
|
Last edited by justmy2cents; 06-15-2017 at 03:56 PM.
|
|
1 members found this post helpful.
|
06-15-2017, 04:00 PM
|
#3
|
LQ Newbie
Registered: Jun 2017
Posts: 2
Original Poster
Rep:
|
Quote:
Originally Posted by justmy2cents
|
Thank you, I heard from my family about Linux software, and all it can do, all I needed is guidance from people that knows what to do
|
|
|
06-15-2017, 09:13 PM
|
#4
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,666
|
A web search for " linux screen recorder" turns up many articles about various screen recorders for Linux.
The only one I've used in recordmydesktop and that was several years ago and it worked quite nicely.
|
|
|
06-15-2017, 09:30 PM
|
#5
|
Senior Member
Registered: Feb 2003
Distribution: debian
Posts: 4,137
|
I just use avconv or ffmpeg from the CLI. But my machines are low spec'd, so every little ounce of CPU spared is noticed.
Code:
$ FPS=5; avconv -f pulse -i default -f x11grab -s 1920x1080 -r:v $FPS -draw_mouse 1 \
-i :0.0+0,0 -r:v $FPS -aspect 16:9 -pix_fmt yuv444p \
-async 1 -ar 44100 -ac 1 -codec:a pcm_s16le \
-codec:v libx264 -pre:v lossless_ultrafast \
-filter_complex "asyncts=compensate=1:min_delta=0.1:max_comp=500:first_pts=0" \
-y CAPTURE.mkv
The -async 1 and -filter_complex is to keep audio and video sync, not that you would notice in 5 minute spurts, but 30+ minutes and you're a full second off or more depending on system specs.
|
|
2 members found this post helpful.
|
06-18-2017, 02:21 AM
|
#6
|
Member
Registered: Apr 2012
Location: somehow, somewhere
Distribution: Arch
Posts: 197
Rep:
|
qt-recordmydesktop works very well, simple to use
|
|
|
06-19-2017, 06:12 AM
|
#8
|
Senior Member
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,197
|
I use this simple script to record my desktop
Code:
#!/bin/bash -e
#©keithhedger Tue 10 Nov 12:44:09 GMT 2015 kdhedger68713@gmail.com
if [ "X$1" = "Xs" ];then
screensize=$2
mousepos=$(xdotool getmouselocation 2>&1|tail -n1|awk '{print $1 "," $2}'|tr -d 'xy :')
else
mousepos="0,0"
screensize=$(xrandr|head -n1|awk '{print $8 $9 $10}'|tr -d ',')
fi
ffmpeg -y -video_size $screensize -framerate 10 -f x11grab -i :0.0+$mousepos -vcodec libx264 -crf 0 -preset ultrafast -acodec pcm_s16le output.mkv||true
ffmpeg -y -i output.mkv -vf scale=800:-1 out.mp4
Save script as recorddesktop and make executable
Example, start recording area of screen starting at the mouse position
Code:
recorddesktop s 100x200
Record entire screen
|
|
|
All times are GMT -5. The time now is 12:12 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|