Having problems opening up kazam keeps crashing. And theres no good screen recorder! Only one is kazam!!! Emailed a admin to. So hope i get reply. Or maybe theres a good one out there. Recordmydesktop i think its called is not to good. >>>>>>>>>>>>
Announcement
Collapse
No announcement yet.
Kazam will not open!
Collapse
This topic is closed.
X
X
-
you can use thisCode:ffmpeg -f alsa -ac 2 -i pulse -f x11grab -s 1366x768 -r 25 -i :0.0 -vcodec ffv1 filename.avi
VINNYi7 4core HT 8MB L3 2.9GHz
16GB RAM
Nvidia GTX 860M 4GB RAM 1152 cuda cores
- Top
- Bottom
-
Originally posted by vinnywright View Postyou can use thisCode:ffmpeg -f alsa -ac 2 -i pulse -f x11grab -s 1366x768 -r 25 -i :0.0 -vcodec ffv1 filename.avi
VINNY
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Originally posted by vinnywright View PostCode:ffmpeg -f alsa -ac 2 -i pulse -f x11grab -s 1366x768 -r 25 -i :0.0 -vcodec ffv1 filename.avi
Code:sudo apt-get install libav-tools
Code:avconv -f x11grab -s $(xdpyinfo | awk '/dimensions/ {print $2}') -i :0.0 -vcodec libtheora -q 10 [i]filename[/i].mkv
The number following -q indicates the quality; the useful range is from 0 to 10 for Theora. Higher numbers indicate higher quality (and larger file size). As an experiment, I ran a quick command loop to make 11 five-second recordings of my idle desktop (1920 x 1080 resolution), incrementing the quality each time. The results:
q | size in bytes
---------------------
0 | 271,930
1 | 393,936
2 | 571,024
3 | 738,440
4 | 764,627
5 | 917,289
6 | 1,069,820
7 | 1,218,198
8 | 1,417,042
9 | 1,883,516
10 | 2,046,983
Theora inside Matroska will provide much smaller files than non-compressed streams inside AVI files. As a comparison, the same five-second recording using FFV1 into an AVI resulted in a file size of 55,383,742 bytes! To my eyes, the Theora video at quality 10 looked identical to the FFV1 video.
Be aware that these files most likely will not play on Windows machines, as Microsoft doesn't include native support for Theora and Matroska. If you need something that's cross platform, let us know.Last edited by SteveRiley; Jan 24, 2013, 01:10 AM.
- Top
- Bottom
Comment
-
Originally posted by SteveRiley View Post...the following command will record your entire screen. It reads your screen's dimensions using xdpyinfo, so you can reuse this command anywhere without having to figure out the parameters for the -s option ahead of time. The video stream is encoded in with the free and open source Theora codec and stored in a Matroska container.
Code:avconv -f x11grab -s $(xdpyinfo | awk '/dimensions/ {print $2}') -i :0.0 -vcodec libtheora -q 10 [I]filename[/I].mkv
Last edited by Snowhog; Jan 24, 2013, 12:51 AM.Windows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Originally posted by Snowhog View PostWAY COOL!! Just gave it a try. Just way to cool! Thank you. I've created an alias for this.
One of my goals was to find a combination of concise command syntax and conservative file sizes. Some other examples I came across were truly ugly, with many many pipes and intermediate file format conversions and just yuk.
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
You have frequently mentioned using aliases, and I've decided this is a good habit to start.
However, for this command, I'm using a function instead. That way, I don't have to forget to supply the filename and the .MKV extension. (IIRC, bash aliases can't take variables.) I've added this to ~/.bash_aliases:
Code:screenrecord () { avconv -f x11grab -s $(xdpyinfo | awk '/dimensions/ {print $2}') -i :0.0 -c:v libtheora -q 10 $*.mkv ;}
Last edited by SteveRiley; Jan 24, 2013, 01:40 AM.
- Top
- Bottom
Comment
Comment