diff --git a/app/views/feeds/_form_audio_format.html.erb b/app/views/feeds/_form_audio_format.html.erb index a3124b0c3..8874009b9 100644 --- a/app/views/feeds/_form_audio_format.html.erb +++ b/app/views/feeds/_form_audio_format.html.erb @@ -16,28 +16,28 @@
- <%= form.select :audio_bitrate, audio_bitrate_options %> + <%= form.select :audio_bitrate, options_for_select(audio_bitrate_options, 128) %> <%= form.label :audio_bitrate %>
- <%= form.select :audio_bitdepth, audio_bitdepth_options %> + <%= form.select :audio_bitdepth, options_for_select(audio_bitdepth_options, 32) %> <%= form.label :audio_bitdepth %>
- <%= form.select :audio_channel, audio_channel_options %> + <%= form.select :audio_channel, options_for_select(audio_channel_options, 2) %> <%= form.label :audio_channel %>
- <%= form.select :audio_sample, audio_sample_options %> + <%= form.select :audio_sample, options_for_select(audio_sample_options, 44100) %> <%= form.label :audio_sample %>