Thanks all for the help! It's working like a charm now...just had to remove file extensions for thumbnails, just left max size 500kb and only image files. Perfect.
What would have to be done for an automatic thumbnail for the post? Is it easy?
Working on the custom "New Video" button now...
(06-07-2011 07:17 PM)av8r_bra Wrote: [ -> ]What would have to be done for an automatic thumbnail for the post? Is it easy?
If what you mean is like the YouTube video thumbnail (created automatically when a user upload a video, and the thumbnail comes from a frame of the video uploaded), unfortunately, we can't do that.
Sorry for late reply.
When you embed the video, by default, it shows a thumbnail anyway.
Thanks for the information guys...
Would it be possible to increase video player size?
Checking "Video/FLV Uploader" Custom thread in display format:
Code:
<a href="{URL}" style="display:block; width:520px; height:330px" id="player"></a>
<script>
flowplayer("player", "{$GLOBALS['mybb']->settings['bburl']}/flowplayer/flowplayer-3.2.6.swf");
</script>
|
Tried editing for a 30% increase in size:
Code:
<a href="{URL}" style="display:block; width:676px; height:429px" id="player"></a>
<script>
flowplayer("player", "{$GLOBALS['mybb']->settings['bburl']}/flowplayer/flowplayer-3.2.7.swf");
</script>
|
Like that the video description stays cut behind some of the player =/
Try also changing this in the xtmv_postbit_first template
HTML Code
<div class="float_left" style="width:530px;">
|
when i upload the file it doesn't show the player at all just a blank post
Which player you use? URL?
i used the latest player flow player i even tryed the older version thats in the tutorial it still shows blank with no player and is it a way i could add a progress bar to the uploader ?
Please make sure that all path to the player is the right path.
(06-16-2011 01:40 AM)awww Wrote: [ -> ]i used the latest player flow player i even tryed the older version thats in the tutorial it still shows blank with no player and is it a way i could add a progress bar to the uploader ?
You have to change Video/FLV Uploader custom thread from:
HTML Code
<a href="{URL}" style="display:block; width:520px; height:330px" id="player"></a>
<script>
flowplayer("player", "{$GLOBALS['mybb']->settings['bburl']}/flowplayer/flowplayer-3.2.6.swf");
</script>
|
to
HTML Code
<a href="{URL}" style="display:block; width:520px; height:330px" id="player"></a>
<script>
flowplayer("player", "{$GLOBALS['mybb']->settings['bburl']}/flowplayer/flowplayer-3.2.7.swf");
</script>
|
That's because of a new version(3.2.7) is out..