1

I would like to right click on an wav-audio file in Nautilus or Dolphin and convert it to a FLAC-audio file that way with the highest possible loss less compression.

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407
rubo77
  • 34,024
  • 52
  • 172
  • 299

1 Answers1

0

You can use flac tool. To install it from terminal you can use the following command:

sudo apt-get install flac

After the installation, you can convert .wav files info .flac files as follow (compression level varies from 0 to 8 - 8 being the best):

flac -8 source.wav destination.flac

Now you have to put the above command in a small bash script, then see, for example, this answer to know how to add it in the right click context menu in Nautilus.

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407