Posts by andrew.46
I use KDE with Slackware -current so: KDE Plasma Version 5.27.3 and this has a quite serviceable Font Manager that can be found from: System Settings --> Appearance --> Font Management Bu...
Answer
I have a directory filled with Flac audio files and I would like to convert them all to Mp3. How do I go about this using FFmpeg? I am using the git FFmpeg and Slackware -current.
The best method is to navigate to the folder containing your Flac audio files and use the following 'for' loop: for j in *.flac do ffmpeg -i "$j" -c:a libmp3lame -b:a 128k mp3/"${j%.flac}.mp3" ...
Answer