XF 2.1 BB Code Media Site help

rexxxy

Active member
Im trying to add my streaming site to my forum
Code:
http://jatune.com/album/34436/dancehall-riddims/sky-line-riddim

What would the the match urls? I tried this and it didnt work
Code:
#//www.jatune.com/*/={$id}

and the would this embed work?
Code:
<iframe width="100%" height="450" scrolling="no" frameborder="no" allow="autoplay" src="http://jatune.com/embed/{$id}"></iframe>
 
It looks to me like the actual embed code given on your site does not actually work.

This track for example:

Code:
<iframe width="100%" height="165" scrolling="no" frameborder="no" allow="autoplay" src="http://jatune.com/track/201149/i-swear/embed"></iframe>
If the actual embed code given for each track worked, it can't be that difficult to create a media bbcode

Screenshot 2020-07-26 at 17.12.41.webp
 
It looks to me like the actual embed code given on your site does not actually work.

This track for example:

Code:
<iframe width="100%" height="165" scrolling="no" frameborder="no" allow="autoplay" src="http://jatune.com/track/201149/i-swear/embed"></iframe>
If the actual embed code given for each track worked, it can't be that difficult to create a media bbcode

View attachment 231375
Wait what did you do to get it to work?
How did you get it to embed in the forum?
 
Wait what did you do to get it to work?

Yes - if that link above is playing correctly.

It seemed tricky at first because the URL has two IDs (a) the number (b) the title. However it seems that you don't actually need the title.

One problem I found is that a lot of the tracks on that site don't embed, or else there is an intermittent problem general with the site (which even happens on Soundcloud)

This is what I used

Media site id: jatune

Site title: Jatune

Site URL https://jatune.com

Match URLs

Code:
https://jatune.com/track/{$id}
http://jatune.com/track/{$id}

Embed template

Code:
<iframe width="100%" height="165" scrolling="no" frameborder="no" allow="autoplay" src="https://jatune.com/track/{$id}/{$id}/embed"></iframe>
 
Yes - if that link above is playing correctly.

It seemed tricky at first because the URL has two IDs (a) the number (b) the title. However it seems that you don't actually need the title.

One problem I found is that a lot of the tracks on that site don't embed, or else there is an intermittent problem general with the site (which even happens on Soundcloud)

This is what I used

Media site id: jatune

Site title: Jatune

Site URL https://jatune.com

Match URLs

Code:
https://jatune.com/track/{$id}
http://jatune.com/track/{$id}

Embed template

Code:
<iframe width="100%" height="165" scrolling="no" frameborder="no" allow="autoplay" src="https://jatune.com/track/{$id}/{$id}/embed"></iframe>

Update: delete it and redid it and it worked. Now to get albums to work

Its coming up black

embed.png
 
Yes - if that link above is playing correctly.

It seemed tricky at first because the URL has two IDs (a) the number (b) the title. However it seems that you don't actually need the title.

One problem I found is that a lot of the tracks on that site don't embed, or else there is an intermittent problem general with the site (which even happens on Soundcloud)

This is what I used

Media site id: jatune

Site title: Jatune

Site URL https://jatune.com

Match URLs

Code:
https://jatune.com/track/{$id}
http://jatune.com/track/{$id}

Embed template

Code:
<iframe width="100%" height="165" scrolling="no" frameborder="no" allow="autoplay" src="https://jatune.com/track/{$id}/{$id}/embed"></iframe>
Thank you so much I appreciate it
 
Top Bottom