<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>record screen Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/record-screen/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 21 Jun 2018 20:43:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to Record GIF on Linux</title>
		<link>https://www.osradar.com/how-to-record-gif-on-linux/</link>
					<comments>https://www.osradar.com/how-to-record-gif-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Tue, 20 Mar 2018 06:13:30 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[record]]></category>
		<category><![CDATA[record gif]]></category>
		<category><![CDATA[record screen]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2216</guid>

					<description><![CDATA[<p>GIF (Graphics Interchange Format) is a nice thing that shows a few frames one after another. If you’re on Linux, it’s really easy for you to capture a part of your screen and turn it into GIF format. There are many possible usage of this trick. For example, sharing step-by-step tutorial or having fun. In [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-record-gif-on-linux/">How to Record GIF on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>GIF (Graphics Interchange Format) is a nice thing that shows a few frames one after another. If you’re on Linux, it’s really easy for you to capture a part of your screen and turn it into GIF format. There are many possible usage of this trick. For example, sharing step-by-step tutorial or having fun. In cases, I also used this method to create some nice memes. Jokes aside, let’s take a look how to do this magic.</p>
<h3>Prerequisites</h3>
<p>For recording your screen, you need a tool named “Peek”. It doesn’t come pre-installed in Linux distros, but follow these simple steps to install it in your system.</p>
<ul>
<li>
<h4>Ubuntu &amp; Ubuntu-based distros</h4>
</li>
</ul>
<p>If you’re on Ubuntu and other Ubuntu-based distros, run these commands to install it on your system. I’m a Linux Mint (Ubuntu-based distro) user, so the screenshots are on Linux Mint.</p>
<p>Run these commands:</p>
<pre class="lang:default decode:true ">sudo add-apt-repository ppa:peek-developers/stable
sudo apt update
sudo apt install peek</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img loading="lazy" class="size-full wp-image-2219 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1.png" alt="" width="1057" height="458" srcset="https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1.png 1057w, https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1-300x130.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1-768x333.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1-1024x444.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1-696x302.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/peek-add-ppa-1-969x420.png 969w" sizes="(max-width: 1057px) 100vw, 1057px" /></p>
<p><img loading="lazy" class="size-full wp-image-2220 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1.png" alt="" width="1054" height="688" srcset="https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1.png 1054w, https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1-300x196.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1-768x501.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1-1024x668.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1-696x454.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/peek-install-peek-1-643x420.png 643w" sizes="(max-width: 1054px) 100vw, 1054px" /></p>
<p>The first line will install the PPA to the system, second will refresh + update the resource catalog and the third line will install the tool.</p>
<ul>
<li>
<h4>Debian</h4>
</li>
</ul>
<p>If you’re on Debian, you need to build “Peek” from the source into an installable DEB package. Follow these steps.</p>
<ul>
<li>Install all the necessary tools with this command:</li>
</ul>
<pre class="lang:default decode:true">sudo apt-get install cmake valac libgtk-3-dev libkeybinder-3.0-dev libxml2-utils gettext txt2man git</pre>
<ul>
<li>Run these commands to start building the app on your system.</li>
</ul>
<pre class="lang:default decode:true">git clone https://github.com/phw/peek.git

mkdir peek/build

cd peek/build

cmake -DCMAKE_INSTALL_PREFIX=/usr -DGSETTINGS_COMPILE=OFF ..

make package</pre>
<ul>
<li>If you followed things correctly, there should be an installable DEB file into the directory. Install it using this command:</li>
</ul>
<pre class="lang:default decode:true">sudo dpkg -i peek-*-Linux.deb [ * = the version of the package]</pre>
<ul>
<li>
<h4>Arch Linux</h4>
</li>
</ul>
<p>Arch is one of the major distributions and a higher grade Linux. In order to install Peek, you have to build it in your system.</p>
<p>Run this command:</p>
<pre class="lang:default decode:true">git clone https://aur.archlinux.org/peek.git

cd peek</pre>
<p>Now, it’s time to build and install the package. Run this command:</p>
<pre class="lang:default decode:true">makepkg -si</pre>
<ul>
<li>
<h4>Fedora</h4>
</li>
</ul>
<p>If you’re on Fedora, you have to install Peek from the RPM Fusion Free software repository. It’s a place where apps not available on Fedora’s official repository are stored. Run this command to install the latest Peek.</p>
<pre class="lang:default decode:true">sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-X.noarch.rpm [Change X with your Fedora version]
dnf copr enable dani/peek
sudo dnf install peek ffmpeg gstreamer1-plugins-ugly</pre>
<ul>
<li>Flatpak</li>
</ul>
<p>If you don&#8217;t find Peek for your Linux distro, consider using Flatpak. It&#8217;s a simple way to make apps available in a wider range of Linux distros. You can get the <a href="https://flatpak.org/setup/">detailed Flatpak setup guide for your Linux here</a>. Then, run this command:</p>
<pre class="lang:default decode:true ">flatpak install --user https://flathub.org/repo/appstream/com.uploadedlobster.peek.flatpakref</pre>
<p>After installation is complete, run Peek by using this command:</p>
<pre class="lang:default decode:true">flatpak run com.uploadedlobster.peek</pre>
<h2>Using Peek</h2>
<p>It’s time to use Peek into your system. First, launch Peek from the Applications. It’ll ask for scaling the screen’s area to record. When you’re ready, click the “Record” button.</p>
<p><img loading="lazy" class="size-full wp-image-2221 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window.png" alt="" width="1020" height="627" srcset="https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window.png 1020w, https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window-300x184.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window-768x472.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window-356x220.png 356w, https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window-696x428.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/peek-main-window-683x420.png 683w" sizes="(max-width: 1020px) 100vw, 1020px" /></p>
<p>When you’re finished, press the “Stop” button. You’ll have the option to save the GIF file in a directory.</p>
<p>You might not know, but Peek allows to record screen in other formats! Yes, you can record your screen in MP4, WebM and APNG formats. To select them, click the drop-down icon next to “Record to GIF” button.</p>
<p><img loading="lazy" class="size-full wp-image-2222 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/peek-more-file-formats.png" alt="" width="1016" height="281" srcset="https://www.osradar.com/wp-content/uploads/2018/03/peek-more-file-formats.png 1016w, https://www.osradar.com/wp-content/uploads/2018/03/peek-more-file-formats-300x83.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/peek-more-file-formats-768x212.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/peek-more-file-formats-696x192.png 696w" sizes="(max-width: 1016px) 100vw, 1016px" /></p>
<p>Need to edit the GIF? Don’t worry. Get GIMP Image Editor. By default, it comes pre-installed in <a href="https://www.osradar.com/top-10-linux-distros/">major Linux distros</a>. If you don’t have GIMP on your system, <a href="https://www.gimp.org/downloads/">get GIMP</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-record-gif-on-linux/">How to Record GIF on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-record-gif-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
