How To Install gsm on Fedora 34

gsm is Shared libraries for GSM speech compressor Shared libraries for GSM speech compressor

Introduction

In this tutorial we learn how to install gsm on Fedora 34.

What is gsm

Contains runtime shared libraries for libgsm, an implementation of the European GSM 06.10 provisional standard for full-rate speech transcoding, prI-ETS 300 036, which uses RPE/LTP (residual pulse excitation/long term prediction) coding at 13 kbit/s. GSM 06.10 compresses frames of 162 13-bit samples (8 kHz sampling rate, i.e. a frame rate of 50 Hz) into 260 bits; for compatibility with typical UNIX applications, our implementation turns frames of 160 16-bit linear samples into 33-byte frames (1650 Bytes/s). The quality of the algorithm is good enough for reliable speaker recognition; even music often survives transcoding in recognizable form (given the bandwidth limitations of 8 kHz sampling rate). The interfaces offered are a front end modelled after compress(1), and a library API. Compression and decompression run faster than realtime on most SPARCstations. The implementation has been verified against the ETSI standard test patterns. gsm 1.0.19 5.fc34 x86_64 33 k gsm-1.0.19-5.fc34.src.rpm updates Shared libraries for GSM speech compressor http MIT Contains runtime shared libraries for libgsm, an implementation of the European GSM 06.10 provisional standard for full-rate speech transcoding, prI-ETS 300 036, which uses RPE/LTP (residual pulse excitation/long term prediction) coding at 13 kbit/s. GSM 06.10 compresses frames of 162 13-bit samples (8 kHz sampling rate, i.e. a frame rate of 50 Hz) into 260 bits; for compatibility with typical UNIX applications, our implementation turns frames of 160 16-bit linear samples into 33-byte frames (1650 Bytes/s). The quality of the algorithm is good enough for reliable speaker recognition; even music often survives transcoding in recognizable form (given the bandwidth limitations of 8 kHz sampling rate). The interfaces offered are a front end modelled after compress(1), and a library API. Compression and decompression run faster than realtime on most SPARCstations. The implementation has been verified against the ETSI standard test patterns.

We can use yum or dnf to install gsm on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gsm.

Install gsm on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install gsm using dnf by running the following command:

sudo dnf -y install gsm

Install gsm on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install gsm using yum by running the following command:

sudo yum -y install gsm

How To Uninstall gsm on Fedora 34

To uninstall only the gsm package we can use the following command:

sudo dnf remove gsm

gsm Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/2ae6ad6389e7e7ed976fa4ed2d57dffc26c862
/usr/lib/libgsm.so.1
/usr/lib/libgsm.so.1.0.19
/usr/share/doc/gsm
/usr/share/doc/gsm/ChangeLog
/usr/share/doc/gsm/MACHINES
/usr/share/doc/gsm/README
/usr/share/licenses/gsm
/usr/share/licenses/gsm/COPYRIGHT
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/32d8140ec866529891e685e0f112e8f8174578
/usr/lib/libgsm.so.1
/usr/lib/libgsm.so.1.0.19
/usr/share/doc/gsm
/usr/share/doc/gsm/ChangeLog
/usr/share/doc/gsm/MACHINES
/usr/share/doc/gsm/README
/usr/share/licenses/gsm
/usr/share/licenses/gsm/COPYRIGHT
/usr/lib/.build-id
/usr/lib/.build-id/8c
/usr/lib/.build-id/8c/5fb5488511f25f3d4faec9f49576cb64654d2d
/usr/lib64/libgsm.so.1
/usr/lib64/libgsm.so.1.0.19
/usr/share/doc/gsm
/usr/share/doc/gsm/ChangeLog
/usr/share/doc/gsm/MACHINES
/usr/share/doc/gsm/README
/usr/share/licenses/gsm
/usr/share/licenses/gsm/COPYRIGHT
/usr/lib/.build-id
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/265b6dac139fc9aa11ed4b03a0f6e13c5bd557
/usr/lib64/libgsm.so.1
/usr/lib64/libgsm.so.1.0.19
/usr/share/doc/gsm
/usr/share/doc/gsm/ChangeLog
/usr/share/doc/gsm/MACHINES
/usr/share/doc/gsm/README
/usr/share/licenses/gsm
/usr/share/licenses/gsm/COPYRIGHT

References

Summary

In this tutorial we learn how to install gsm on Fedora 34 using yum and dnf.