PDA

View Full Version : Show Thread Enhancements - Play FLV/MP4 Attachments


Frosty
04-08-2011, 10:00 PM
First of all, you will need to create a new BB Code.

Login to your Administration Panel, find "Custom BB Codes" in the sidebar, click it. And click add new BB Code:

Title: attachvideo
BB Code Tag Name: attachvideo
Replacement:

<script type='text/javascript' src='http://yourdomain.com/flashplayer/jwplayer.js'></script>
<div id='mediaspace_$attachment[attachmentid]'>Loading the player...</div>
<script type='text/javascript'>
jwplayer('mediaspace_$attachment[attachmentid]').setup({
'flashplayer': 'http://yoursite.com/flashplayer/player.swf',
'file': 'http://yoursite.com/attachment.php?attachmentid=$attachment[attachmentid]',
'controlbar': 'bottom',
'width': '720',
'height': '480',
'type': 'video',
'provider': 'video'
});
</script>


Example:
2322

Description:
With this BB Code you will be able to embed multiple videos that are uploaded as attachments.

Use {option}: No.

Remove Tag If Empty: Yes.
Disable BB Code Within This BB Code: Yes.
Disable Smilies Within This BB Code: Yes.


Save it...

Now, how to take out the attachment ID from the link?

Let's say that you uploaded some FLV file, when you hover over it, you'll see something similar to this:
http:// *yourdomain.com/attachment.php?attachmentid=2322&stc=1&d=1302358811

Part that you need is "2322"

Simply wrap it in:

2322

Obviously, you'll need JWPlayer for this, you can download JWPlayer from here:
http://www.longtailvideo.com/players/jw-flv-player/

After you've downloaded it, unzip it , and upload it on your server, make sure you enter the correct path of the .js and .swf file for the BBCode replacement.

If you want to make it easy, just create a directory called "flashplayer" in your root forum directory, and upload all JWPlayer files in it, replacement I've pasted in this will work with that path, otherwise, you'll have to set your own path.

p.s. If you can't upload .flv or .mp4 files as attachments, that means you don't have that extension set in the Attachments Manager.

Create them, and everything will work!

yahooooh
04-10-2011, 06:19 AM
could you plz make it support mp3
and also update it for vb4

Frosty
04-10-2011, 07:04 AM
@yahooooh
If you don't have the mp3 extension in Attachment Manager add it, pick the biggest size that should be allowed for mp3 files, and MIME Type you need to enter is "audio/mpeg".

Now, go to the creation of new BB Codes..

Title: mp3
BB Code Tag Name: mp3
Replacement:

<script type='text/javascript' src='http://yoursite.com/flashplayer/jwplayer.js'></script>
<div id='mediaspace_$attachment[attachmentid]'>Loading the player...</div>
<script type='text/javascript'>
jwplayer('mediaspace_$attachment[attachmentid]').setup({
'flashplayer': 'http://yoursite.com/flashplayer/player.swf',
'file': 'http://yoursite.com/attachment.php?attachmentid=$attachment[attachmentid]',
'controlbar': 'bottom',
'width': '720',
'height': '24',
'type': 'sound'
});
</script>


Example: 2948
Description: Use this BB Code to play MP3 files that are uploaded as attachments.
Use {option} : No
Button Image: Optional
Remove Tag If Empty: Yes
Disable BB Code Within This BB Code: Yes
Disable Smilies Within This BB Code: Yes

Save...

About this BB Code for vBulletin 4, I'll install vb4 on localhost later, so I'll see what I can do, shouldn't be much different than this one.

8thos
05-14-2011, 06:08 PM
@
About this BB Code for vBulletin 4, I'll install vb4 on localhost later, so I'll see what I can do, shouldn't be much different than this one.Okay please do I really need this.

Frosty
05-20-2011, 09:59 PM
@Octavius!
https://vborg.vbsupport.ru/showthread.php?t=263950

There you go. :)

8thos
05-21-2011, 01:00 AM
Your awesome dude!