1 lien privé
I am looking for a native Linux software that can increase the audio volume of a video file.
To increase the volume by a specific decibel amount (e.g., +10dB) while copying the video stream:
ffmpeg -i input.mp4 -vcodec copy -af "volume=10dB" output.mp4
To increase the volume by a linear multiplier (e.g., 2x louder):
ffmpeg -i input.mp4 -vcodec copy -af "volume=2.0" output.mp4
Vous avez déjà remarqué comment le volume varie d'une vidéo à l'autre sur YouTube, ou pire, comment certaines pubs sont 10 fois plus fortes que le contenu ...
Linux Mint moved to a new sound server called Pipewire.
To check which sound server is running, use the following command:
inxi -A
If you're unable to get the sound working, you can try to go back to the older sound server called PulseAudio.
apt purge pipewire pipewire-bin
systemctl enable --user pulseaudio
sudo reboot
Upstream bug report for choppy sound over HDMI: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1025453
How To Fix Buzzing Speakers On Linux
https://inv.nadeko.net/watch?v=Kt0dkXWnaC4
apt purge pipewire pipewire-bin
systemctl enable --user pulseaudio
sudo reboot
sudo alsa force-reload
Découvrez Asak, un outil audio CLI multiplateforme écrit en Rust, véritable couteau suisse de l'audio. Enregistrez, jouez et appliquez des effets en temps réel de manière interactive et ludique.
Did you read the Debian Wiki about the NvidiaGraphicsDrivers?
=> https://wiki.debian.org/NvidiaGraphicsD ... llseye-470
First step install Linux Headers and compilation dependencies:
Code: Select all
sudo apt install linux-headers-$(uname -r) build-essential libglvnd-dev pkg-config dkms -y
Second step blacklist the nouveau driver create a blacklist file:
Code: Select all
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
In the file add the following and save the file:
Code: Select all
blacklist nouveau
options nouveau modeset=0
Then regenerate the kernel initramfs:
Code: Select all
sudo update-initramfs -u
Third step install the latest NvidiaGraphicsDrivers:
Code: Select all
sudo apt install -t bullseye-backports firmware-misc-nonfree nvidia-kernel-dkms nvidia-driver nvidia-cuda-toolkit nvidia-cuda-dev nvidia-settings nvidia-smi nvidia-xconfig nvidia-opencl-icd nvidia-opencl-common nvidia-detect -y
Reboot.
To view how version you have installed, just open an terminal and enter follow:
Code: Select all
nvidia-smi
alsactl -F restore