Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 3 Jahren
vor 3 Jahren
12345678910111213141516171819
  1. # flac-mass-transcode
  2. It will find every flac file and transcode them to opus files, while keeping the directory structure, adding album covers where possible. If another type of music file is found, like mp3's, it will be copied over without transcoding.
  3. # Usage
  4. ```bash
  5. ./flac-mass-transcode ~/music_input_dir ~/music_output_dir
  6. ```
  7. ## The --uplevel flag
  8. Let's say you only want to copy over 1 album, while keeping the directory. -u 1 can be used for that. For example.
  9. ```bash
  10. ./flac-mass-transcode ~/music/album ~/output
  11. ```
  12. This would put every file in album under output.
  13. ```bash
  14. ./flac-mass-transcode -u 1 ~/music/album ~/output
  15. ```
  16. This will create an album directory under output, and put the files there.