• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

[Add More Video Sites] BB Code Media

It looks like you added it to the mtvtv bbcode...remove that second regex line you added from the mtvtv and add it to the mtvmv (music video code)

Lemme know if that was it....the embed code you posted I assume is from the bbcode you edited?
Switched it to the mtvmv code, but that didn't work either (still doing the spinning icon thing). Here's what I have for the URL matching and embed HTML:
Code:
#mtv\.com/[a-z-0-9-]+/[a-z-0-9-]+/(?P<id>[0-9]+)/[a-z-0-9-]+\.jhtml\#id=[0-9]+#si
Code:
<embed src="http://media.mtvnservices.com/mgid:uma:videolist:mtv.com:{$id}/cp~instance%3Dfullepisode%26autoPlay%3Dfalse%26id%3D{$id}%26uri%3Dmgid%3Auma%3Avideolist%3Amtv.com%3A{$id}" width="512" height="288" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" base="."></embed>
Spot anything wrong? :confused:
 
The embed html is not right...embed source should have a mgid:uma:video:mtv.com: , mgid:uma:videolist:mtv.com looks to be for the music videos or trailers.

Code:
<embed width="500px" height="383px" flashvars="sid=MTV_Videos&amp;autoPlay=false" swliveconnect="true" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" quality="high" bgcolor="#000000" name="embeddedPlayer" id="embeddedPlayer" style="undefined" src="http://media.mtvnservices.com/mgid:uma:video:mtv.com:{$id}/" type="application/x-shockwave-flash">
 
The embed html is not right...embed source should have a mgid:uma:video:mtv.com: , mgid:uma:videolist:mtv.com looks to be for the music videos or trailers.

Code:
<embed width="500px" height="383px" flashvars="sid=MTV_Videos&amp;autoPlay=false" swliveconnect="true" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" quality="high" bgcolor="#000000" name="embeddedPlayer" id="embeddedPlayer" style="undefined" src="http://media.mtvnservices.com/mgid:uma:video:mtv.com:{$id}/" type="application/x-shockwave-flash">
Still just spinning...oh, well. lol
 
Still just spinning...oh, well. lol

no no no oh well....this needs a sortin....pming you now.

A second request - MSNBC.

Media Site ID: msnbc
________________________________________
Site Title: msnbc
________________________________________
Site URL: http://www.msnbc.msn.com
________________________________________
Match URLs: #msnbc\.msn\.com/[a-z0-9-_/]+/\#*(?P<id>[0-9]+)#si
________________________________________
Embed HTML:
HTML:
<object width="420" height="245" id="msnbc72e2f4" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0">
<param name="movie" value="http://www.msnbc.msn.com/id/32545640" />
<param name="FlashVars" value="launch={$id}&amp;width=420&amp;height=245" />
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="true" />
<param name="wmode" value="transparent" />
<embed name="msnbc72e2f4" src="http://www.msnbc.msn.com/id/32545640" width="420" height="245" FlashVars="launch={$id}&amp;width=420&amp;height=245" allowscriptaccess="always" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">
</embed>
</object>
________________________________________
Regular Expression Matching: Use 'Match URLs' as PCRE regular expressions [ Checked ]
________________________________________
 
Code:
Media Site ID: this_american_life
________________________________________
Site Title: This American Life
________________________________________
Site URL: http://www.thisamericanlife.org
________________________________________
Match URLs: #thisamericanlife\.org/radio-archives/episode/(?P<id>[0-9]+)/[a-z0-9-_]+#si
________________________________________
Embed HTML:
<script src="http://audio.thisamericanlife.org/widget/widget.min.js" type="text/javascript"></script>
<div id="this-american-life-{$id}" class="this-american-life" style="width:540px;"></div>
 
_______under advanced options_________________
Regular Expression Matching: Use 'Match URLs' as PCRE regular expressions [ Checked ]
________________________________________

Thanks to EQNoble. I apparently had a problem with my code. Nothing major but enough. He fixed it for me so that's cool!
 
How do you match a URL like this:

http://ictv-tf-ec.indieclicktv.com/...6/4f01f221bf00c/31/0/defaultPlayer^player.swf

Embed code is this:

<object width="650" height="272"><param name="movie" value="http://ictv-tf-ec.indieclicktv.com/...6/4f01f221bf00c/31/0/defaultPlayer^player.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://ictv-tf-ec.indieclicktv.com/...6/4f01f221bf00c/31/0/defaultPlayer^player.swf" type="application/x-shockwave-flash" allowFullScreen="true" allowscriptaccess="always" width="650" height="272"></embed></object>

Coming from this website: http://twitchfilm.com/news/2012/01/action-packed-new-us-trailer-for-dante-lams-the-viral-factor.php

(I would be okay with filtering out the URL from that embed code myself, so I don't necessarily need a fancy lookup function.)
 
Media Site ID: msnbc
Updated:

Match URLs: #msnbc\.msn\.com/[a-z0-9-_/]*/(?P<id>[0-9]+)#i


Updated again:
Match URLs: #msnbc\.msn\.com/[a-z0-9-_/]+/\#*(?P<id>[0-9]+)#si

I think it will catch all of the various sub sections of videos
 
Yes it does....
Code:
<embed width="600" height="361" type="application/x-shockwave-flash" allowFullscreen="true" allowNetworking="all" wmode="transparent" src="http://static.photobucket.com/player.swf" flashvars="file=http%3A%2F%2Fvid3.photobucket.com%2Falbums%2Fy58%2FAkseli%2FMotion%2520pictures%2Fsaransynttrit018.mp4">


How do I setup Photobucket please...
photobucket.webp
 
Can you please do a media bb embed code for Hulkshare?

I need to make fun of this Amber Rose song bad. http://hulkshare.com/0zrak59of8ex
Here are the two embed codes the site gives.

Code:
<script type="text/javascript">var _hsPlayer = _hsPlayer || [];_hsPlayer.push(["id", "5614659", "hsPlayer_5614659", [670, 100]]);(function(){var x=document.createElement("script");x.type="text/javascript";x.async=true;x.src="http" + ("https:" == document.location.protocol ? "s" : "") + "://www.hulkshare.com/hsPlayer/hsPlayer.js.php";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(x, s);})();</script><div id="hsPlayer_5614659"></div>

and

Code:
<iframe id="hulkshare-player-embed" name="hulkshare-player-embed" src="http://www.hulkshare.com/embed_mp3.php?fn=0zrak59of8ex&bg=000000&fg=71C90C" scrolling="no" frameborder="0" allowTransparency="true" style="width:100%;height:49px;"></iframe>
 
Any way to embed videos from *******, *******, other such sites?

Redtube was easy enough
Code:
http://www.redtube.com/{$id}
Code:
<object height="344" width="434"><param name="allowfullscreen" value="false"><param name="AllowScriptAccess" value="always"><param name="movie" value="http://embed.redtube.com/player/"><param name="FlashVars" value="id={$id}&style=redtube&autostart=false"><embed src="http://embed.redtube.com/player/?id={$id}&style=redtube" allowfullscreen="false" AllowScriptAccess="always" flashvars="autostart=false" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="344" width="434" /></object>
 
Just a general comment related to the previous post.

Whilst we would rather inappropriate sites such as the one above weren't discussed, as long as there are no active links or examples, posting the embed code is permitted.

Please ensure you use the code tags to avoid any URLs being parsed, which would allow them to be clicked.
 
Always remember to upload the callback file for a site before trying to add it. In this case unzip the attachment and upload the contents to your forum root.


I just added this. I am using the Aurora theme, here is the output:

BrZnMA.png


I adjusted the EXTRA.css to -10px, to see if it moved, nothing changed. Curious as to what I am doing incorrectly.... Thanks for your help.
 
What's BETs?

http://www.bet.com/video/106andpark/exclusives/common-true-believer-106-and-park-106common-s2.html

Code:
<object width="628" height="386" id="kickWidget_176704_437150" name="kickWidget_176704_437150" type="application/x-shockwave-flash" data="http://serve.a-widget.com/service/getWidgetSwf.kickAction"><param name="movie" value="http://serve.a-widget.com/service/getWidgetSwf.kickAction" ></param><param name="FlashVars" value="affiliateSiteId=176704&widgetId=502288&width=628&height=386&playOnLoad=0&js=1&autoPlay=0&revision=80&mediaURL=http%3A%2F%2Fwww.bet.com%2Fvideo%2F106andpark%2Fexclusives%2Fcommon-true-believer-106-and-park-106common-s2%2F_jcr_content%2Fleftcol%2Fvideoplayer.mrss%3Ftype%3Dembed" ></param><param name="wmode" value="transparent" ></param><param name="allowFullScreen" value="true" ></param><param name="allowScriptAccess" value="always" ></param></object>
 
how about issuu.com.
how to embed pdf file from issuu ?

Code:
http://issuu\.com/*/docs/{$id}


Code:
object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="width:420px;height:275px" id="6d513ec7-aa65-9bae-5f4b-941ea59eb737" >
<param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf?mode=mini&amp;backgroundColor=%23222222&amp;documentId=120105020938-a6c981434a604707bbe5e8d994d942ae" />
<param name="allowfullscreen" value="true"/>
<param name="menu" value="false"/>
<param name="wmode" value="transparent"/>
<embed src="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" wmode="transparent" style="width:420px;height:275px" flashvars="mode=mini&amp;backgroundColor=%23222222&amp;documentId={$id}" />
</object>

I use the code.. but nt work


Thank's
 
Top Bottom