Linux Mint 20, Xubuntu or Ubuntu 20.04 LTS runs well on the Dell laptop. But, the recent upgrade to Linux Mint 20 or Ubuntu 20.04 LTS caused an issue of tinny sound from the the speakers. After trying several changes, I tried this below, and at least, using the pulseaudio equalizer, managed to make the … Continue reading How to fix tinny sound from Dell Inspiron 5000 series laptop speakers in Linux Mint 20 or Ubuntu 20.04 LTS
Category: Multimedia
How to fix crackling distorted sound from speakers in Linux Mint 20 XFCE
The computer speakers crackle and give distorted sound at high volumes in Linux Mint 20 XFCE. To overcome this, open a terminal window and enter the following commands: $ alsamixer <enter>Use the right arrow key to locate the option for Auto-Mute. It will show enabled. Change it to disabled by pressing the down arrow key … Continue reading How to fix crackling distorted sound from speakers in Linux Mint 20 XFCE
How to install vlc and other applications not available in the Fedora repositories via rpmfusion
Fedora has not put the vlc media player in it's official repos. To install it and various other such applications not available in the Fedora repos, add the rpmfusion repository to the package manager and use it to download vlc. To add the rpmfusion repos, open a terminal window and enter the following commands: $ … Continue reading How to install vlc and other applications not available in the Fedora repositories via rpmfusion
Enable login sound in Linux Mint on the XFCE desktop environment
It is strange that Linux Mint has such great sound effects in Cinnamon and they can all be heard, but they do not work on the Linux Mint XFCE desktop. Fret not. The effects are there, but the sounds have to be enabled. This applies to the XFCE desktop in any Linux distribution. To enable … Continue reading Enable login sound in Linux Mint on the XFCE desktop environment
Extract audio stream from a video file using ffmpeg
To extract the audio stream from a video file using ffmpeg, open a terminal window and enter the following command: $ ffmpeg -i file.avi -vn -ab 256k -ar 48000 -y file.mp3 <enter> Note that the values 256 and 48000 in the above example can be changed per convenience.
How to extract Opus audio from MKV file
To extract the opus audio from mkv file, open a terminal window and enter the following command: $ ffmpeg -i Attention.mkv -acodec copy -vn audio.opus <enter>
How to find out the audio stream using ffmpeg in .mkv file
To find out the audio stream in the .mkv file using ffmpeg, open a terminal window and enter the following command: $ ffmpeg -i aaa.mkv <enter>
Clipgrab to download videos from online streaming sites
Use Clipgrap from https://clipgrab.org/ to download videos for offline viewing from sites like youtube.com. It supports a heap of other sites too. The list is at https://clipgrab.org/faqs/supported-sites
How to restore music file names from iPod on a Linux computer
After copying music to the iPod, file names and folder names of the music files change to 4 characters with mp3 after them. Unfortunately, these do not identify the music file on an Android device or even the PC. Similarly, folder names too are changed. Could not find a way to get back the folder … Continue reading How to restore music file names from iPod on a Linux computer
Create a VCD from mp4 or mkv files using devede and cdrdao in Linux
At times, we need to create a VCD from any video files we may have saved, like those from cell phones. Those files are already in the MP4 or MKV format. Fortunately, it is easy to create VCDs from such files using devede. 1. Transfer the mp4 or mkv files to the computer. 2. Start … Continue reading Create a VCD from mp4 or mkv files using devede and cdrdao in Linux