How To Install asdcplib-tools on CentOS 8
Introduction
In this tutorial we learn how to install asdcplib-tools
on CentOS 8.
What is asdcplib-tools
Open source implementation of SMPTE and the MXF Interop \u201cSound & Picture Track File\u201d format. It was originally developed with support from DCI. Development is currently supported by CineCert and other d-cinema manufacturers. It supports reading and writing MXF files containing sound (PCM), picture (JPEG 2000 or MPEG-2) and timed-text (XML) essence. plain text and cipher text are both supported using OpenSSL for cryptographic support. This package contains tools and testing programs for asdcplib.
We can use yum
or dnf
to install asdcplib-tools
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install asdcplib-tools.
Install asdcplib-tools on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install asdcplib-tools
using dnf
by running the following command:
sudo dnf -y install asdcplib-tools
Install asdcplib-tools on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install asdcplib-tools
using yum
by running the following command:
sudo yum -y install asdcplib-tools
How To Uninstall asdcplib-tools on CentOS 8
To uninstall only the asdcplib-tools
package we can use the following command:
sudo dnf remove asdcplib-tools
asdcplib-tools Package Contents on CentOS 8
/usr/bin/as-02-info
/usr/bin/as-02-unwrap
/usr/bin/as-02-wrap
/usr/bin/asdcp-info
/usr/bin/asdcp-test
/usr/bin/asdcp-unwrap
/usr/bin/asdcp-util
/usr/bin/asdcp-wrap
/usr/bin/blackwave
/usr/bin/j2c-test
/usr/bin/klvwalk
/usr/bin/kmfilegen
/usr/bin/kmrandgen
/usr/bin/kmuuidgen
/usr/bin/wavesplit
/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/7b990bf814a2940552936807472d6e5f733216
/usr/lib/.build-id/21/d3768d986a1a725f70125a0552b8cd8e3f8dee
/usr/lib/.build-id/28
/usr/lib/.build-id/28/2276748037b552538307f18250cd33e88063d3
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/2b397fd4d4825d14ba25c910c8fa75f32ed6d5
/usr/lib/.build-id/43
/usr/lib/.build-id/43/b8821751f81bfb7c197f80d3a37a6c36e6f32d
/usr/lib/.build-id/60
/usr/lib/.build-id/60/a3f4f3189cc527f57e8bf831abafae3952c4f2
/usr/lib/.build-id/64
/usr/lib/.build-id/64/e7eb5654ef226d6ea0b7c097a919251013dae3
/usr/lib/.build-id/67
/usr/lib/.build-id/67/22c961cef6c8d26f6cb4082fc7ad5223dc6178
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/208f2a9ae747294735125164fabb77262bd0f8
/usr/lib/.build-id/90
/usr/lib/.build-id/90/753d11ac5b9e12f745f8eb7e1fea51631d2012
/usr/lib/.build-id/a4
/usr/lib/.build-id/a4/628e66643030be30c91715f8ef28935144719b
/usr/lib/.build-id/b1
/usr/lib/.build-id/b1/4fe1d4f4f045c54aedfe1c344ddae91e929230
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/f382938b4e9c005c8ea286b60ebe1db9dff3db
/usr/lib/.build-id/c1
/usr/lib/.build-id/c1/3493e7994a118d01030b34dbe055ce0cf7601c
/usr/lib/.build-id/da
/usr/lib/.build-id/da/dff7cea7b5bda172bb268abb6225d85c9a4b94
References
Summary
In this tutorial we learn how to install asdcplib-tools
on CentOS 8 using yum and dnf.