diff --git a/forked-daapd.conf b/forked-daapd.conf index a3a9d1e1..584edd64 100644 --- a/forked-daapd.conf +++ b/forked-daapd.conf @@ -25,6 +25,9 @@ library "My Music" { # Matches anywhere in the path (not a regexp, though) # compilations = { "/compilations/" } + # Should iTunes metadata override ours? +# itunes_overrides = true + # Formats: mp4a, mp4v, mpeg, alac, flac, mpc, ogg, wma, wmal, wmav, aif, wav # Formats that should never be transcoded # no_transcode = { "alac", "mp4a" } diff --git a/src/conffile.c b/src/conffile.c index 84d4d3c6..3fe2416f 100644 --- a/src/conffile.c +++ b/src/conffile.c @@ -55,6 +55,7 @@ static cfg_opt_t sec_library[] = CFG_STR("password", NULL, CFGF_NONE), CFG_STR_LIST("directories", NULL, CFGF_NONE), CFG_STR_LIST("compilations", NULL, CFGF_NONE), + CFG_BOOL("itunes_overrides", cfg_false, CFGF_NONE), CFG_STR_LIST("no_transcode", NULL, CFGF_NONE), CFG_STR_LIST("force_transcode", NULL, CFGF_NONE), CFG_END()