ALLOW_ALL_DOMAINS missing
Installation and Configuration
You'd need to setup a page on your site that contains your player then embed that player in the other site using an iframe.
--edit--
Add a new page to your site by adding a .tpl file to your skin (or a clone of an existing skin), eg:
/skins/YOUR-SKIN/somename.tpl
That will can be accessed by going to
your-site.com/somename
and everything you add after that as parameters will be available in the {$_post} variable. so if you had
your-site.com/somename/song_id=55
Then you could get the value of song_id via the variable {$_post.song_id}.
You can use this to pass into the {jrCore_list} (the get stuff from the database function for any jamroom datastore.)
eg:
{jrCore_list module="jrAudio" search1="_item_id = `$_post['song_id']`"}
Then take a look at how the item_detail.tpl file of the jrAudio module does it to setup a player.
updated by @michael: 08/20/19 09:44:26PM