Browse Source

adapt the example inis to the changes made in the last commit - now there is no multithreading as it was too finicky, ffmpeg options will be given comma separated

master
Constantin Fürst 2 years ago
parent
commit
d95ab09165
  1. 2
      quality-flac.ini
  2. 11
      small-mp3.ini

2
quality-flac.ini

@ -6,7 +6,7 @@ icon_exts = png,jpg,jpeg
folder = /mnt/server/media/converted/flac-music/
file_ext = flac
[ffmpeg]
options = -af 'lowpass=22050, volume=6dB' -sample_fmt s16 -ar 44100 -loglevel error
options = -sample_fmt,s16,-ar,44100,-loglevel,error
location = ffmpeg
[libconv]
overwrite = false

11
small-mp3.ini

@ -1,16 +1,15 @@
[source]
folder = /mnt/server/media/music/
file_exts = flac,dsf,dff,wav,wv,mp3
file_exts = flac,dsf,dff,wav,wv
icon_exts = png,jpg,jpeg
[destination]
folder = /mnt/server/media/converted/mp3-testing/
folder = /mnt/server/media/converted/mp3-music/
file_ext = mp3
[ffmpeg]
options = -loglevel error -af 'lowpass=22050, volume=6dB' -ar 44100 -b:a 192k
location = ffmpeg
options = -loglevel,error
location = /usr/local/bin/ffmpeg
[libconv]
overwrite = true
overwrite = false
dry_run = false
deduce_metadata = true
threads = 6
Loading…
Cancel
Save