Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Video Infusion PRO

Asked Modified Viewed 41,535 times
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
asked
Senior Member

[mp]551[/mp]
Edited by NetriX on 18-12-2014 15:10,
0 replies

35 posts

B
Bluey100
B
  • Junior Member, joined since
  • Contributed 20 posts on the community forums.
  • Started 9 threads in the forums
answered
Junior Member

Please, Where do I delete a video?
0 replies
E
EdjuxaS
E
DROGMO - biggest ID provider in Lithuania.
  • Member, joined since
  • Contributed 52 posts on the community forums.
  • Started 15 threads in the forums
answered
Member

Excellent modification. Thanks!
0 replies
A
Adrijan
A
  • Junior Member, joined since
  • Contributed 25 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

I was install this but it doesnt work becose when i try to add new video it show me error and says that this site doesnt exist
Do i install something in wrong path or?
It show me this infusion but when i try to use it it doesnt exist ??
I notice that path which is on is :http://www.pvc-stolarija.info/forum/infusions/video/Avideo.html
And i am litlle suspicious about Avideo.html, i suppose it must be avideo.php, recent_videos.php etc..
Why this work wrong by me?
Edited by Adrijan on 25-06-2013 20:20,
0 replies
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

It is simply a confliction with your PHPFusion SEO addon. Search doesn't work as well (search.html) but replacing with "search.php" it shows correctly.
0 replies
A
Adrijan
A
  • Junior Member, joined since
  • Contributed 25 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

Where do i need to change these files, couse i dont find any with prefix html and with heading tag in installation of this infusion? all what i find seems to me properly
Where i can look up to find these files ?
I dont find any Search.html to change into search.php and other files too
0 replies
K
KasteR
K
KasteR 10
  • Senior Member, joined since
  • Contributed 290 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

Adrijan, perhaps you don't understand.

The SEO is basically changing the output of the actual file name. On your server, the file may reside as "search.php" on your root directory. But the SEO is changing this to "search.html" on the output end. This is to allow a bot to crawl your page, and index it easier.

You may want to contact the developer of the SEO mod for assistance. Outside of that, I also noticed that there was the word "forum" on your URL. Perhaps this may have something to do with it as well, as the infusions reside outside of this directory.
0 replies
A
Adrijan
A
  • Junior Member, joined since
  • Contributed 25 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

Thanks!
Probably is that what you have mentioned
I dont even think about that
I will try with your suggestion
Edited by N/A on 08-10-2015 09:35,
0 replies
A
Adrijan
A
  • Junior Member, joined since
  • Contributed 25 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

If anybody perhaps know what to with that issue just type
Thanks!
0 replies
— 7 months later —
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

Although development is sluggish at the moment due to busy schedule. I would love to hear anyone's suggestions for a v4 release.

v4 is currently in alpha development here and can currently be previewed.

View v4 Preview

Fire away!
0 replies
A
afaaro
A
afaaro 10
  • Senior Member, joined since
  • Contributed 295 posts on the community forums.
  • Started 68 threads in the forums
answered
Senior Member

Hi Netrix

Its great video infusion. I have this suggestion if you want to use it for youtube and vimeo code:


/* Place these these into your functions.php file
    Retrive Video Thumbnails */
function video_image($url){
    $domain = parse_url($url);
    // Test if the link is for youtube
    if($domain['host'] == 'www.youtube.com' || $domain['host'] == 'youtube.com'){
        $array = explode("&", $domain['query']);
        return "http://img.youtube.com/vi/".substr($array[0], 2)."/0.jpg"; // Returns the largest Thumbnail
    // Test if the link is for the shortened youtube share link
    } else if($domain['host'] == 'www.youtu.be' || $domain['host'] == 'youtu.be'){
        $array = ltrim($domain['path'],'/');
        return "http://img.youtube.com/vi/". $array ."/0.jpg"; // Returns the largest Thumbnail
    // Test if the link is for vimeo
    } else if($domain['host'] == 'www.vimeo.com' || $domain['host'] == 'vimeo.com'){
        $hash = unserialize(file_get_contents("http://vimeo.com/api/v2/video/".substr($domain['path'], 1).".php"));
        return $hash[0]["thumbnail_medium"]; // Returns the medium Thumbnail
    }
}
 


/* Retrieve Video Embed Code */
/* Instead of returning the full embed code, you could just return the video ID and place that in the necessary location.  Useful if you need to have your embeds vary in size across your site */
function video_embed($url){
    $domain = parse_url($url);
    // Test if the link is for youtube
    if($domain['host'] == 'www.youtube.com' || $domain['host'] == 'youtube.com'){
        $array = explode("&", $domain['query']);
        return '<iframe src="http://www.youtube.com/embed/' . substr($array[0], 2) . '?wmode=transparent" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>'; // Returns the youtube iframe embed code
    // Test if the link is for the shortened youtube share link
    } else if($domain['host'] == 'www.youtu.be' || $domain['host'] == 'youtu.be'){
        $array = ltrim($domain['path'],'/');
        return '<iframe src="http://www.youtube.com/embed/' . $array . '?wmode=transparent" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>'; // Returns the youtube iframe embed code
    // Test if the link is for vimeo
    } else if($domain['host'] == 'www.vimeo.com' || $domain['host'] == 'vimeo.com'){
        $hash = substr($domain['path'], 1);
        return '<iframe src="http://player.vimeo.com/video/' . $hash . '?title=0&byline=0&portrait=0" width="100%" height="100%" frameborder="0" webkitAllowFullScreen allowfullscreen></iframe>'; // Returns the vimeo iframe embed code
    }
}


And Usage:
echo video_embed($data['url from the database']);
echo video_image($data['url from the database']);
0 replies
— 8 months later —
H
hatirlabeni
H
  • Newbie, joined since
  • Contributed 1 post on the community forums.
answered
Newbie

I can not add video I get the following error, what should I do?
File / URL / Custom was left empty.
0 replies
— 1 month later —
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

This infusion was updated to version 3.1.0. Please report any problems.

Thank you!
0 replies
N
naszportal
N
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
answered
Newbie

Hi

it doesn't work with domain HTTPS?
Any solution?

Problem with JW Player
0 replies
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

I'll have to work a fix for that into the next update, and make it more user-friendly.

For now, please test:

Edit: /infusions/video/video.php around line 166

Change:

add_to_head('<script src="http://jwpsrv.com/library/7zlM1FqoEeOclyIACqoGtw.js"></script>');


To:

add_to_head('<script src="https://ssl.jwpsrv.com/library/7zlM1FqoEeOclyIACqoGtw.js"></script>');


and replace instances of http to https for youtube.

In fact, this will have to be done as a whole as we want to serve "secure" data.

I'll work it all into the v4 release.
Edited by N/A on 08-10-2015 09:35,
0 replies
N
naszportal
N
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
answered
Newbie

It's works but only without ssl before jwpsrv.com

add_to_head('<script src="https://jwpsrv.com/library/7zlM1FqoEeOclyIACqoGtw.js"></script>');
0 replies
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

Ok, good to hear.

And the YouTube images (assuming you use that), do they all work correctly?
0 replies
N
naszportal
N
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
answered
Newbie

yes, images are ok.
0 replies
— 8 months later —
B
batbaru1
B
  • Member, joined since
  • Contributed 54 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

Is the coding of this infusion such that it would work when adding a video by using a URL to a location that is protected by .htaccess/.htpasswd? I was hoping to be able to add restricted videos that are in a protected directory, and have the prompt for username/password come up before the video file loads. But it seems that even though the protected video appears to be added, it will not run. All I get when clicking on the added video is an circled X. If I go directly to the video file in a new browser window, it prompts for username/password and then the video loads/plays.

Any ideas?
0 replies
N
NetriX
N
NetriX 10
Need help? Having trouble?
» View our Documentation for guides, functions and more - including the Getting Started section!
» Attach Log Files and Screenshots when reporting issues
» My support days are usually Mon-Thurs. Send me a PM if urgent.
  • Senior Member, joined since
  • Contributed 566 posts on the community forums.
  • Started 93 threads in the forums
  • Started this discussions
answered
Senior Member

There may we an issue with the JW Player being handled remotely. Perhaps setting up the players files manually as done with previous versions would work.

Although, the easiest route to take would be to specify group rights and only allow certain groups to view the categories/videos.

p.s. - Sorry for such a late response, I just found your question.
Edited by N/A on 08-10-2015 09:34,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 35 posts
  • Votes 0 votes
  • Topic users 14 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet