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
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
Zorin OS 17 Beta Available for Testing
The upcoming version of Zorin OS includes plenty of improvements to take your PC to a whole new level of user-friendliness.
-
Red Hat Migrates RHEL from Xorg to Wayland
If you've been wondering when Xorg will finally be a thing of the past, wonder no more, as Red Hat has made it clear.
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.
-
StripedFly Malware Hiding in Plain Sight as a Cryptocurrency Miner
A rather deceptive piece of malware has infected 1 million Windows and Linux hosts since 2017.