LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 06-15-2017, 03:47 PM   #1
shadow.ninja71693
LQ Newbie
 
Registered: Jun 2017
Posts: 2

Rep: Reputation: Disabled
Smile 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)
 
Old 06-15-2017, 03:48 PM   #2
justmy2cents
Member
 
Registered: May 2017
Location: U.S.
Distribution: Un*x
Posts: 237
Blog Entries: 2

Rep: Reputation: Disabled
byzanz https://www.youtube.com/watch?v=lnC7aNxATmc

Last edited by justmy2cents; 06-15-2017 at 03:56 PM.
 
1 members found this post helpful.
Old 06-15-2017, 04:00 PM   #3
shadow.ninja71693
LQ Newbie
 
Registered: Jun 2017
Posts: 2

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by justmy2cents View Post
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
 
Old 06-15-2017, 09:13 PM   #4
frankbell
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
Blog Entries: 28

Rep: Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248Reputation: 6248
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.
 
Old 06-15-2017, 09:30 PM   #5
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875Reputation: 875
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.
Old 06-18-2017, 02:21 AM   #6
WFV
Member
 
Registered: Apr 2012
Location: somehow, somewhere
Distribution: Arch
Posts: 197

Rep: Reputation: Disabled
qt-recordmydesktop works very well, simple to use
 
Old 06-18-2017, 12:47 PM   #7
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 3,006

Rep: Reputation: 395Reputation: 395Reputation: 395Reputation: 395
I like an application called "Simple Screen Recorder"(SSR). Another excellent one is OBS Studio which I believe surpasses SSR.

https://obsproject.com/

http://www.maartenbaert.be/simplescreenrecorder/
 
1 members found this post helpful.
Old 06-19-2017, 06:12 AM   #8
Keith Hedger
Senior Member
 
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,197

Rep: Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867Reputation: 867
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
Code:
recorddesktop
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Record Desktop App, where can I find it for Mint and Fedora? Novatian Linux - Software 8 03-14-2015 06:22 AM
Google pays record fee to buy .app domain name... gor0 General 2 02-28-2015 02:49 PM
can I record desktop actions for frequently used complex app interactions? SaintDanBert Linux - Desktop 4 01-22-2015 01:02 PM
Simple app to record video? sw67 Linux - Software 3 11-15-2008 04:05 AM
An app to record sound, entirely in text mode (no gfx) wilsonsamm Linux - Software 3 08-12-2006 06:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:12 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration