vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   New Posting Features - VB AnyMedia Player / Media Sites (youtube, google and many more) (https://vborg.vbsupport.ru/showthread.php?t=150491)

diesalot 09-25-2007 10:22 PM

ok now i dont get unsupported file type. y not sure no changes made. but img shows an x and when you click on it to show the player it is blank.

Edit:

Dont have problems pasting any other links but only this 1. The others display and play fine.

nix 09-25-2007 10:34 PM

its probably phrased wrong now. its pulling it from the database. You can delete that record or try changing the link some.

bzg 09-25-2007 10:50 PM

any idea how to enabled this in blog?

nix 09-25-2007 10:52 PM

<a href="https://vborg.vbsupport.ru/showpost.php?p=1344301&postcount=971" target="_blank">https://vborg.vbsupport.ru/showp...&postcount=971</a>

bzg 09-25-2007 11:40 PM

hi nix i did the plugins edit in "anymedia_show_css" which is the "global_setup_complete" but still seems not working with the vbblog. any idea why?

nix 09-25-2007 11:43 PM

Create a new plugin under anymedia in blog_entry_start and put this in it.

PHP Code:

if ($vbulletin->options['anymediaenable'] && ($vbulletin->userinfo['permissions']['anymediapermissions'] & $vbulletin->bf_ugp_anymediapermissions['canuse']))
{
    
//require_once(DIR . '/includes/functions_newpost.php');

    
preg_match('{\[url\](.+)\[\/url\]}i'$bloginfo['pagetext'], $match);
    if(isset(
$match))
    {
        include_once (
DIR '/includes/class_anymedia.php');
        
$anyMedia = new Anymedia($vbulletin);
        
$media $anyMedia->newfetch($match[1], $options);

        if (
$media['type'] != 'error' && $media['type'] != 'unknown')
        {
            
$mediatag $vbulletin->options['anymediatag'];
            
$pattern = array('[url]''[/url]');
            
$replace = array("[$mediatag]""[/$mediatag]");
            
            
$bloginfo['pagetext'] = str_replace($pattern$replace$bloginfo['pagetext']);
        }
    }
}

if(
$vbulletin->options['anymediaimage']) {
    
// Img
    
preg_match('{\[IMG\](.+)\[\/IMG\]}i'$bloginfo['pagetext'], $m);
    if(!
is_null($m[1]))
    {
        include_once (
DIR '/includes/class_anymedia.php');
        
$anyMedia = new Anymedia($vbulletin);
        
$media $anyMedia->newfetch($m[1], $options);

        if (
$media['type'] != 'error' && $media['type'] != 'unknown')
        {
            
$mediatag $vbulletin->options['anymediatag'];
            
$pattern = array('[IMG]''[/IMG]');
            
$replace = array("[$mediatag]""[/$mediatag]");
            
            
$bloginfo['pagetext'] = str_replace($pattern$replace$bloginfo['pagetext']);
        }
    }



bzg 09-25-2007 11:56 PM

okie I created the new plugin and all that... but still not working man ! help ! thanks

Shinou 09-27-2007 02:52 PM

Nice hack man, one problem, the mp3 is messed, not sure if it's me or what but when we listen to music it's like it's been sped up and the song sounds like chipmunks, wtf is up with it? Also, would you mind adding some Anime video sites, If you want some links for if you do for updates, just ask. ^_~

UK-Biker 09-27-2007 04:58 PM

Installed on 3.6.8 and works fine (once I got the images in the right place).

:eek::D

nix 09-28-2007 03:58 AM

Quote:

Originally Posted by Shinou (Post 1348273)
Nice hack man, one problem, the mp3 is messed, not sure if it's me or what but when we listen to music it's like it's been sped up and the song sounds like chipmunks, wtf is up with it? Also, would you mind adding some Anime video sites, If you want some links for if you do for updates, just ask. ^_~

I think that might be on your end. Works fine here.

Shinou 09-28-2007 04:41 AM

Oh ok, thanks then. Do you recommend doing anything?

nix 09-28-2007 04:45 AM

You can go here and see if it does it also.
http://www.jeroenwijering.com/

Shinou 09-28-2007 07:28 AM

You mean like, to hear if it is all chipmunk style?

jhfweb 09-28-2007 08:45 AM

Quote:

Originally Posted by Shinou (Post 1348817)
You mean like, to hear if it is all chipmunk style?


Hi Shinou
Try to sample your mP3`s with CBR (constant bitrate) It seems you actually use VBR and this causes the problem. Check it out....

Shinou 09-28-2007 10:35 AM

How exactly do I do that? ;o

beishe8 09-28-2007 07:12 PM

Quote:

Originally Posted by Shinou (Post 1348866)
How exactly do I do that? ;o

How do you convert a CD to MP3?
With your converter have to be an option there for the bitrate.
Set it to a constant rate.

iogames 09-28-2007 11:25 PM

I'm ready for 3.1!!!
Hey Nix, how much do you charge me to install it on my site? :cool:

nix 09-29-2007 03:57 AM

$20 for install.

the final version of 3.1 is coming. Its going to be a complete code rewrite.

tiekie 09-29-2007 11:30 AM

Quote:

Originally Posted by nix (Post 1349349)
$20 for install.

the final version of 3.1 is coming. Its going to be a complete code rewrite.


Thanks mate .... Great offer ;)

Just made my $20 donation and pm send

Shinou 09-29-2007 12:18 PM

Quote:

Originally Posted by beishe8 (Post 1349153)
How do you convert a CD to MP3?
With your converter have to be an option there for the bitrate.
Set it to a constant rate.

Well I set it to 48kbps in the converter, I uploaded the song and still, must I make it go lower than 48kbs bitrate?

beishe8 09-29-2007 05:41 PM

Quote:

Originally Posted by Shinou (Post 1349528)
Well I set it to 48kbps in the converter, I uploaded the song and still, must I make it go lower than 48kbs bitrate?

That is very low. Make it over 100.
Did you see the options: variable - constant?

citroenar 09-29-2007 07:12 PM

here is one problem:

"Lightbox/ThickBox works with Inline Editing" (https://vborg.vbsupport.ru/showthread.php?t=126501) stop working when I enable "Use AnyMedia BBCode when upload an attachment" in options.

Keev 09-29-2007 07:44 PM

This mod enables the vbulletin blog to work with various medias as well?

nukeleo 09-29-2007 08:00 PM

Can u help me?
How can i remove or correct this Tags
http://img179.imageshack.us/img179/3747/anymediaao2.jpg

Thanks

nix 09-29-2007 08:50 PM

Quote:

Originally Posted by citroenar (Post 1349785)
here is one problem:

"Lightbox/ThickBox works with Inline Editing" (https://vborg.vbsupport.ru/showthread.php?t=126501) stop working when I enable "Use AnyMedia BBCode when upload an attachment" in options.

Well it would since they are both trying to do the same thing.
Quote:

Originally Posted by Keev (Post 1349800)
This mod enables the vbulletin blog to work with various medias as well?

Yes.

iogames 09-29-2007 09:41 PM

Quote:

Originally Posted by nix (Post 1349349)
$20 for install.

the final version of 3.1 is coming. Its going to be a complete code rewrite.

Sure I will pay since I think my community will use it heavily on my site, but I will wait for 3.1 then...

nix 09-29-2007 09:45 PM

well 3.1 is kind of out already. I just haven't added all the features.

psychotica 09-30-2007 04:14 AM

I have a problem as well. I've installed the mod, but I don't get the option to change the usergroup permissions, so I can't use the code =/

nix 09-30-2007 04:44 AM

did u upload the files?

Nikoo 09-30-2007 02:08 PM

Hi,

I wonder is it possible for the users (members) in forum to post videos the like?

Rydain 09-30-2007 04:01 PM

Hi, I wonder if it's possible to turn off videos from certain sites being shown at all?

psychotica 09-30-2007 07:57 PM

Quote:

Originally Posted by nix (Post 1349988)
did u upload the files?

Yeah, I made sure of it. I added b3 first, but noticed that b2 had some files that weren't in b3. So I went ahead and added b2 and then overwrote the files with the ones that were in b3. Uploaded the product, and it still didn't work.

nix 09-30-2007 09:14 PM

Quote:

Originally Posted by Nikoo (Post 1350209)
Hi,

I wonder is it possible for the users (members) in forum to post videos the like?

Yes. Thats one of the features of this mod.
Quote:

Originally Posted by Rydain (Post 1350252)
Hi, I wonder if it's possible to turn off videos from certain sites being shown at all?

Yes. Its in anymedia options. Each site can be turned off.
Quote:

Originally Posted by psychotica (Post 1350383)
Yeah, I made sure of it. I added b3 first, but noticed that b2 had some files that weren't in b3. So I went ahead and added b2 and then overwrote the files with the ones that were in b3. Uploaded the product, and it still didn't work.

Did you go into usergroups? and click on edit a usergroup?

ronman 09-30-2007 09:33 PM

Nix, I'm having the same "upgrade your flash player" error and M logo as several others in here.
I've tried looking at the highslide stuff, but I can't really figure out what it's doing.

Would you be able to lend me a quick hand in resolving the problem?

nix 09-30-2007 09:36 PM

sure pm me your forum info.

psychotica 09-30-2007 09:42 PM

Yeah, I went to Edit Usergroup =/

nix 09-30-2007 09:45 PM

if you want pm info to ur site and i'll take a look.

setubal 09-30-2007 10:34 PM

hello,

Could you tell me the way to TRANSLATE the CLOSE english TEXT appearing in popup video and/or sounds in right upper corner ?

Thanks a lot.

iogames 09-30-2007 10:40 PM

Quote:

Originally Posted by ronman (Post 1350441)
Nix, I'm having the same "upgrade your flash player" error and M logo as several others in here.
I've tried looking at the highslide stuff, but I can't really figure out what it's doing.

Would you be able to lend me a quick hand in resolving the problem?

Aaah! I have no worries I will pay and that's it ;)

setubal 09-30-2007 11:14 PM

Quote:

Originally Posted by setubal (Post 1350471)
hello,


Could you tell me the way to TRANSLATE the CLOSE english TEXT appearing in popup video and/or sounds in right upper corner ?

Thanks a lot.

Can't find !!

Searching, searching,... GRRRR no way !!

I'm searching in styles and templates even in folder AnyMedia files ;(
No ideas ?
Thank yu

Example here : http://www.portugal-tchat.com/www.po...37-post26.html

CLOSE TEXT IN RIGHT UPPER CORNER ! CAN'T MODIFY/ TRANSLATE THIS TEXT !!! ;(((


All times are GMT. The time now is 12:34 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02991 seconds
  • Memory Usage 1,840KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete