From 02325d2edec3c8ac733f4565595d27127cb5c9c1 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Aug 2012 00:51:45 +0200 Subject: decoder/fluidsynth: add "soundfont" setting Replaces the old global "soundfont" which never worked. --- doc/user.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'doc') diff --git a/doc/user.xml b/doc/user.xml index fdfbc441..bb83674d 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -818,6 +818,37 @@ systemctl start mpd.socket +
+ <varname>fluidsynth</varname> + + + MIDI decoder based on libfluidsynth. + + + + + + + Setting + Description + + + + + + soundfont + + + The absolute path of the soundfont file. Defaults + to + /usr/share/sounds/sf2/FluidR3_GM.sf2. + + + + + +
+
<varname>mikmod</varname> -- cgit v1.2.3 From 4a993cd79ec4149c3b52b383a8f751be26c2bac5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Aug 2012 00:57:32 +0200 Subject: decoder/fluidsynth: add "sample_rate" setting --- NEWS | 1 + doc/user.xml | 9 +++++++++ src/decoder/fluidsynth_decoder_plugin.c | 20 ++++++++++++++------ 3 files changed, 24 insertions(+), 6 deletions(-) (limited to 'doc') diff --git a/NEWS b/NEWS index a1aee15b..4aaa75ca 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,7 @@ ver 0.17.2 (2012/??/??) - fluidsynth: remove throttle (requires libfluidsynth 1.1) - fluidsynth: stop playback at end of file - fluidsynth: check MIDI file format while scanning + - fluidsynth: add sample rate setting * output: - httpd: use monotonic clock, avoid hiccups after system clock adjustment - httpd: fix throttling bug after resuming playback diff --git a/doc/user.xml b/doc/user.xml index bb83674d..13a2c738 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -834,6 +834,15 @@ systemctl start mpd.socket + + + sample_rate + + + The sample rate that shall be synthesized by the + plugin. Defaults to 48000. + + soundfont diff --git a/src/decoder/fluidsynth_decoder_plugin.c b/src/decoder/fluidsynth_decoder_plugin.c index ed0efdd9..894b2d35 100644 --- a/src/decoder/fluidsynth_decoder_plugin.c +++ b/src/decoder/fluidsynth_decoder_plugin.c @@ -19,6 +19,7 @@ #include "config.h" #include "decoder_api.h" +#include "audio_check.h" #include "conf.h" #include @@ -28,6 +29,7 @@ #undef G_LOG_DOMAIN #define G_LOG_DOMAIN "fluidsynth" +static unsigned sample_rate; static const char *soundfont_path; /** @@ -69,6 +71,15 @@ fluidsynth_mpd_log_function(int level, char *message, G_GNUC_UNUSED void *data) static bool fluidsynth_init(const struct config_param *param) { + GError *error = NULL; + + sample_rate = config_get_block_unsigned(param, "sample_rate", 48000); + if (!audio_check_sample_rate(sample_rate, &error)) { + g_warning("%s\n", error->message); + g_error_free(error); + return false; + } + soundfont_path = config_get_block_string(param, "soundfont", "/usr/share/sounds/sf2/FluidR3_GM.sf2"); @@ -82,11 +93,6 @@ fluidsynth_init(const struct config_param *param) static void fluidsynth_file_decode(struct decoder *decoder, const char *path_fs) { - static const struct audio_format audio_format = { - .sample_rate = 48000, - .format = SAMPLE_FORMAT_S16, - .channels = 2, - }; char setting_sample_rate[] = "synth.sample-rate"; /* char setting_verbose[] = "synth.verbose"; @@ -104,7 +110,7 @@ fluidsynth_file_decode(struct decoder *decoder, const char *path_fs) if (settings == NULL) return; - fluid_settings_setnum(settings, setting_sample_rate, 48000); + fluid_settings_setnum(settings, setting_sample_rate, sample_rate); /* fluid_settings_setstr(settings, setting_verbose, setting_yes); @@ -158,6 +164,8 @@ fluidsynth_file_decode(struct decoder *decoder, const char *path_fs) /* initialization complete - announce the audio format to the MPD core */ + struct audio_format audio_format; + audio_format_init(&audio_format, sample_rate, SAMPLE_FORMAT_S16, 2); decoder_initialized(decoder, &audio_format, false, -1); while (fluid_player_get_status(player) == FLUID_PLAYER_PLAYING) { -- cgit v1.2.3 From 93f9c2ab6b1a61456f8acbf9a243d05571d005ec Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Aug 2012 01:03:16 +0200 Subject: doc/user: add wildmidi documentation --- doc/user.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'doc') diff --git a/doc/user.xml b/doc/user.xml index 13a2c738..38d8a9d8 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -887,6 +887,37 @@ systemctl start mpd.socket
+ +
+ <varname>wildmidi</varname> + + + MIDI decoder based on libwildmidi. + + + + + + + Setting + Description + + + + + + config_file + + + The absolute path of the timidity config file. Defaults + to + /etc/timidity/timidity.cfg. + + + + + +
-- cgit v1.2.3