[8WR] XenMedio (Media) PRO

[8WR] XenMedio (Media) PRO [Paid] 1.7.0

No permission to buy ($40.00)
I would be willing to pay for these if you could get them to work. I need Spotify, bandcamp, and reverb nation to work with this addon. Let me know thanks!!
 
`url` parameter is not a valid SoundCloud URL. Learn more about using SoundCloud players.

SoundCloud.com. I am getting this on all my soundcloud links. Any idea how to fix this or what happen?
It appears SoundCloud made a slight change to their API to force HTTPS.

Go here: index.php?media/admin/services and click EDIT on soundcloud, and change the "embed html" to:
Code:
<iframe width="100%" height="{h}"  style="max-width: {w}px" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/{serviceVAL2}?auto_play={apTF}" frameborder="0"></iframe>
 
It appears SoundCloud made a slight change to their API to force HTTPS.

Go here: index.php?media/admin/services and click EDIT on soundcloud, and change the "embed html" to:
Code:
<iframe width="100%" height="{h}"  style="max-width: {w}px" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/{serviceVAL2}?auto_play={apTF}" frameborder="0"></iframe>

Worked perfect. Thanks for the quick response!!
 
It appears SoundCloud made a slight change to their API to force HTTPS.

Go here: index.php?media/admin/services and click EDIT on soundcloud, and change the "embed html" to:
Code:
<iframe width="100%" height="{h}"  style="max-width: {w}px" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/{serviceVAL2}?auto_play={apTF}" frameborder="0"></iframe>

I am getting this if I do that:

Please enter a value for the required field 'service_playlist'.

But I am not seeing such field.
 
I am getting this if I do that:

Please enter a value for the required field 'service_playlist'.

But I am not seeing such field.
I received that same thing a while back. You may have luck searching through my post to see how I was told to fix this problem. Sorry I cant be of more help.
 
How do I stream mp3s with this addon? I have a ton of local music available for download and would like to offer the option to play the songs before download.
 
How do I stream mp3s with this addon? I have a ton of local music available for download and would like to offer the option to play the songs before download.
All the music on my site is original to the best of my knowledge I am not doing anything illegal if you were wondering. The music all comes from local artist.:D
 
How do I stream mp3s with this addon? I have a ton of local music available for download and would like to offer the option to play the songs before download.
There are several ways to do this...

If you want to submit a single MP3, upload it to "xf/data/local"... then submit as "audio:yourmusic.mp3".

mp3, mp2, aac and m4a are all supported using the local "audio:" tag.
flv, f4v, m4v, mp4, 3gp, 3g2 and wmv are all supported using the local "video:" tag.

Conversely, if you choose, you can actually do an XML playlist of music instead. "audio:musiclist.xml"

You simply need to create an XML playlist of your music using the MRSS standard
Code:
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:jwplayer="http://developer.longtailvideo.com/trac/">
    <channel>
        <title>SOUL EDGE Khan Super Session</title>
        <image>http://8wayrun.com/music/kss/01.jpg</image>
        <item>
            <title>01 Doubtful Judgement</title>
            <media:content url="http://8wayrun.com/music/kss/01.mp3" duration="226" />
            <media:thumbnail url="http://8wayrun.com/music/kss/01.jpg" />
        </item>
        <item>
            <title>02 The Edge of Soul</title>
            <media:content url="http://8wayrun.com/music/kss/02.mp3" duration="260" />
            <media:thumbnail url="http://8wayrun.com/music/kss/02.jpg" />
        </item>
        <item>
            <title>03 An Oath of the Sword</title>
            <media:content url="http://8wayrun.com/music/kss/03.mp3" duration="93" />
            <media:thumbnail url="http://8wayrun.com/music/kss/03.jpg" />
        </item>
        <item>
            <title>04 P.N.K.N.</title>
            <media:content url="http://8wayrun.com/music/kss/04.mp3" duration="226" />
            <media:thumbnail url="http://8wayrun.com/music/kss/04.jpg" />
        </item>
        <item>
            <title>05 Castaway into Darkness</title>
            <media:content url="http://8wayrun.com/music/kss/05.mp3" duration="222" />
            <media:thumbnail url="http://8wayrun.com/music/kss/05.jpg" />
        </item>
        <item>
            <title>06 Hagakure</title>
            <media:content url="http://8wayrun.com/music/kss/06.mp3" duration="238" />
            <media:thumbnail url="http://8wayrun.com/music/kss/06.jpg" />
        </item>
        <item>
            <title>07 Eternal Memories</title>
            <media:content url="http://8wayrun.com/music/kss/07.mp3" duration="91" />
            <media:thumbnail url="http://8wayrun.com/music/kss/07.jpg" />
        </item>
        <item>
            <title>08 A Haunting Wind</title>
            <media:content url="http://8wayrun.com/music/kss/08.mp3" duration="238" />
            <media:thumbnail url="http://8wayrun.com/music/kss/08.jpg" />
        </item>
        <item>
            <title>09 Another Fanatic</title>
            <media:content url="http://8wayrun.com/music/kss/09.mp3" duration="223" />
            <media:thumbnail url="http://8wayrun.com/music/kss/09.jpg" />
        </item>
        <item>
            <title>10 Moonlight Shadows</title>
            <media:content url="http://8wayrun.com/music/kss/10.mp3" duration="265" />
            <media:thumbnail url="http://8wayrun.com/music/kss/10.jpg" />
        </item>
        <item>
            <title>11 A Continental Gale</title>
            <media:content url="http://8wayrun.com/music/kss/11.mp3" duration="226" />
            <media:thumbnail url="http://8wayrun.com/music/kss/11.jpg" />
        </item>
        <item>
            <title>12 Tiny Amulet</title>
            <media:content url="http://8wayrun.com/music/kss/12.mp3" duration="224" />
            <media:thumbnail url="http://8wayrun.com/music/kss/01.jpg" />
        </item>
        <item>
            <title>13 Yellow Sands</title>
            <media:content url="http://8wayrun.com/music/kss/13.mp3" duration="210" />
            <media:thumbnail url="http://8wayrun.com/music/kss/02.jpg" />
        </item>
        <item>
            <title>14 A Mediterranean Call</title>
            <media:content url="http://8wayrun.com/music/kss/14.mp3" duration="224" />
            <media:thumbnail url="http://8wayrun.com/music/kss/03.jpg" />
        </item>
        <item>
            <title>15 Darkness of Fate</title>
            <media:content url="http://8wayrun.com/music/kss/15.mp3" duration="247" />
            <media:thumbnail url="http://8wayrun.com/music/kss/04.jpg" />
        </item>
        <item>
            <title>16 Our Way Home</title>
            <media:content url="http://8wayrun.com/music/kss/16.mp3" duration="274" />
            <media:thumbnail url="http://8wayrun.com/music/kss/05.jpg" />
        </item>
    </channel>
</rss>
You can see an example of how this looks here:
http://8wayrun.com/media/soul-edge-khan-super-session.2146/media
(only track 2 on this soundtrack is worth listening to)
 
Last edited:
I will try that out tomorrow thank you. I did how ever find this and it is working exactly how I want it to. It would be nice to have a better design and also use it on the resource manager. I want to add it so people can listen or download the songs. My work blocks your website cause its a gaming site so Ill check out that one when I get to a different network. Thanks jaxel

http://xenforo.com/community/threads/mp3-attachment-player.7903/
 
Top Bottom