Are there still lofi and hifi audio options in JR5?
Installation and Configuration
I just tried this and it worked:
* use the Form Designer to add another field to both the CREATE and UPDATE forms for the audio module.
The form field name will be 'audio_lofi' and the type will be 'audio'. This will allow another file to be uploaded during the audio create process.
Then add these 3 lines to somewhere on the jrAudio's item_detail.tpl page:
{jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_lofi" item=$item}<br>
{jrCore_module_url module="jrAudio" assign="murl"}
<a href="{$jamroom_url}/{$murl}/download/audio_lofi/{$item._item_id}">Download Lofi</a>
That will put the button player there to play the lofi version and the download link to download the lofi version.
You then need to turn off the block file downloads:
ACP -> MEDIA -> AUDIO SUPPORT -> GLOBAL CONFIG -> "block file downloads"
Perhaps wrap the above in an {if jrUser_is_logged_in()} to make it only visible to the logged in users.