Building Frames
Go with lavfi
Generating a GIF in two steps – generating the palette and then applying it – is not elegant. Besides, it leaves behind a PNG file that is useless for anything else.
Thanks to the lavfi
virtual device, you can do everything in one go (Listing 2), which has the advantage of making you look like a veritable FFmpeg wizard, without generating any PNG cruft to boot.
Listing 2
One-Step GIF Generation
At this stage, it should be clear what is going on, but for the sake of clarity:
- The
clip_gray.mp4
file is the grayscale and scaled-down video you want to convert. - The
lavfi
filter options in quotation marks generate the palette image and pipe it through[out]
to the … - …
-filter_complex
chain of filters.
Apart from using the palette you created with the lavfi
virtual device, you reduce the frame rate to 10 frames per second and push the resulting frames out to clip_gray.gif
.
The resulting GIF image is smooth, acceptably lightweight, and created in seconds.
Conclusion
Not surprisingly, FFmpeg is the back end for so many video editing applications: The number of things you can do with it is astounding. Although it is true that some of the command lines you have to generate can be eye-wateringly complex, it is often worth working directly with FFmpeg, because it gives you that extra control on the final result. Apart from lavfi, you can learn more about FFmpeg devices by taking a look at the "More Devices" box.
More Devices
Apart from lavfi
, a few other FFmpeg devices are worth investigating, especially if you want a raw, but very reliable way of grabbing streams from your camera or desktop:
(1) video4linux2
, or v4l2
[4] for short (you can use either), captures streams from your webcam. To work out what devices you have on which to capture streams, run ls /dev/video*
. My laptop has, apart from its built-in webcam, an external webcam with its own microphone, so I see:
> ls /dev/video* /dev/video0 /dev/video1
If you run ffplay -f v4l2 -i /dev/video1
, a window pops up showing the feed from the external webcam.
(2) On a related note, alsa
[5] and pulse
[6] capture audio. To know which device to capture audio from, if you want to use alsa
, enter arecord -l
. Again, on my laptop, apart from the built-in microphone, I have the microphone attached to the external webcam and a microphone input on an external USB sound card, so I see:
> arecord -l **** List of CAPTURE Hardware Devices **** card 0: PCH [HDA Intel PCH], device 0: ALC3241 Analog [ALC3241 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Device [USB Sound Device], device 0: USB Audio [USB Audio] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: H2300 [HP Webcam HD 2300], device 0: USB Audio [USB Audio] Subdevices: 1/1 Subdevice #0: subdevice #0
If I want to record from the microphone on the webcam, I can see it is card 2 (HP Webcam HD 2300) connected to device 0. This means ffmpeg -f alsa -i hw:2,0 voice.mp3
records to a file called voice.mp3
.
With pulse
, things are a bit different. First, you need to find out the name of your devices:
> pactl list sources Source #2 State: SUSPENDED Name: alsa_input.usb-Hewlett_Packard_HP_Webcam_HD_2300-02.analog-stereo Description: HP Webcam HD 2300 Analog Stereo Driver: module-alsa-card.c Sample Specification: s16le 2ch 44100Hz Channel Map: front-left,front-right Owner Module: 7 Mute: no Volume: front-left: 48497 / 74% / -7.85 dB, front-right: 48497 / 74% / -7.85 dB balance 0.00 Base Volume: 41350 / 63% / -12.00 dB Monitor of Sink: n/a Latency: 0 usec, configured 0 usec Flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY[...]
Once you have located the device from which you want to record, you can then use its name in FFmpeg:
ffmpeg -f pulse -i alsa_input.usb-Hewlett_Packard_HP_Webcam_HD_2300-02.analog-stereo voice.mp3
In this case, it captures from an external webcam microphone and records to voice.mp3
.
(3) x11grab
[7] is interesting if you want to make screencasts. You can grab the whole screen, just a rectangle, or a rectangle centered around the cursor. For example, the line
ffmpeg -f x11grab -follow_mouse centered -framerate 25 -video_size 640x480 -i :0.0 screncast.mp4
captures a 640x480
region centered around the mouse and records it to screencast.mp4
.
You can mix and match all the above devices and apply all sorts of effects to the streams they produce. Altogether, they provide a very complete and complex screencasting solution.
Infos
- FFmpeg colors: https://ffmpeg.org/ffmpeg-all.html#Color
- "Tutorials – FFmpeg" by Paul Brown, Linux Magazine, issue 206, January 2018, pg. 92, http://www.linux-magazine.com/Issues/2018/206/Tutorials-FFmpeg
- Big Buck Bunny: https://peach.blender.org/
- video4linux2 device: https://www.ffmpeg.org/ffmpeg-devices.html#video4linux2_002c-v4l2
- alsa device: https://www.ffmpeg.org/ffmpeg-devices.html#alsa
- pulse device: https://www.ffmpeg.org/ffmpeg-devices.html#pulse
- x11grab device: https://www.ffmpeg.org/ffmpeg-devices.html#x11grab
« Previous 1 2
Buy Linux Magazine
Direct Download
Read full article as PDF:
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
KDE Plasma 5.27 Beta is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.
-
Critical Linux Vulnerability Found to Impact SMB Servers
A Linux vulnerability with a CVSS score of 10 has been found to affect SMB servers and can lead to remote code execution.
-
Linux Mint 21.1 Now Available with Plenty of Look and Feel Changes
Vera has arrived and although it is still using kernel 5.15, there are plenty of improvements sure to please everyone.