[ Video Sharing CMS v4 ] Sanishan's changes of PHPVibe 3.3 RC 2

Started by sanishan,

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

sanishanTopic starter

Hi @Mario

I have complete the implement the Title and Description rewrite using  synonym   database, If you have time i could send you my Code with DB SQL files at your email. (PM your email).

If you think its good then i will share with other people.. otherwise I can't.

Also i am working on YouTube Direct Search Result Just like in 3.1 when someone click on the youtube video its import automatically in database. (only register users).

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

sanishan can u please post this for us... I'm looking for the youtube search just like youtube 3.1


or if it's possible Mario to add it as a patch the current version..

also Mario I never though about that before but we are missing

Personal Messaging system between users u know?

Marius P.

Quote from: Martin on
Personal Messaging system between users u know?

I will add that and a wall upgrade to buzz as plugins, right now focusing on the framework more.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Hi @Mario!

I have created a site which is rewrite the title/description for auto import or 1by1 youtube video import

and also My customized version also create the thumbnail for upload flv/mp4 video with duration fetch.
Demo: http://taaji.com/


I am working on some issue/problems to display final thumbnail in the thumbnail area and also hide the thumbnail upload filed. BTW thumbnail image detail store in hidden filed just like you store upload video file in hidden vfile field.


Plz don't upload adult content (Thanks).

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

I saw it, cool. Did you use ffmpeg?
You should put a warning after the upload that the thumb is processing cause it takes a bit and you have the impression it fails.


Add an id for the div with class control-group that holds the thumb, hide it by default, once thumb is generated don't show it, if thumb fails, show it.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
I saw it, cool. Did you use ffmpeg?
You should put a warning after the upload that the thumb is processing cause it takes a bit and you have the impression it fails.


Add an id for the div with class control-group that holds the thumb, hide it by default, once thumb is generated don't show it, if thumb fails, show it.

Yes i am using ffmpeg, i am not to good with javascript, but i am doing my best to solve this issue,

About the warning i don't know how i can do that, because i am using upload.php file to generate thumbnail you know upload.php response in json to show us the final output, i don't know how i can send pre message to display warning that thumbnail generating in progress or etc..

about the upload field hide.. you option is great.. its could be done easily :)

Also i am planning if ffmepg did not able to get the duration of the video then its display message that uploading failed.. because ffmpeg able to determinate that file is corrupt of not.. no duration file corrupt or not supported :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

JQuery hide and show it's enough.
I would suggesting using 2 php files launching the thumb one after the upload via jquery, this way you know what you are dealing with, when upload finished, when thumbnail finished, and if you have a thumbnail.
Thumb generation may fail due to other issues, not only corrupted file...
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

I have made that change, hide thumb upload filed and show thumbnail if its generated...

I don't have any idea to using jquery to display message thumbnail in progress if uploading complete :(

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

sanishan can u share with us the script to search from youtube?

sanishanTopic starter

Quote from: Martin on
sanishan can u share with us the script to search from youtube?

I don't have make this yet.. I will do that soon.. Right know i am working on things on phpvibe, like thumbnail generating.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

 ??? "the script to search from Youtube" is already in the admin panel, it's a 8 lines of code copy to com_search and input it in the search results...
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
??? "the script to search from Youtube" is already in the admin panel, it's a 8 lines of code copy to com_search and input it in the search results...

I know i have already checked it.. but the problem is make this to add in database if someone click on the video, i don't want to use php to display result i want to use javascript (youtube json api) to display result to prevent from  google/search engine to display in indexed as spamming..

I hope you understand ..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

This will also reduce the server resource, and javascript will use the user bandwidth to display youtube result.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Yes, I understand, this why I've left this out, to prevent clients from getting banned and then blaming it on us (like the hundreds of times before this release ).
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

@mario, json option is great to use using javascript.

BTW mario, your search_com is using the database to display result, your function like getYoutubeSearchVideosFeeds fetch the data from youtube directly, i want something like that using javascript..

BTW i have almost created the code, and working on jquery to add result in database (if user register only)..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Youtube has js api, you can inject them dynamically as page elements, should not be complicated.

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Youtube has js api, you can inject them dynamically as page elements, should not be complicated.



I need your help, let me know what PHP function i need to use to insert youtube video in database?

like
$vid = new Vibe_Providers();

if(!$vid->isValid(_post('vfile'))){
return '<div class="msg-warning">'._lang("We don't support yet embeds from that website").'</div>';
}
$details = $vid->get_data();

OR
something like  (if you have any function which support video id inserting in database please give  it to me :) )
youtube_import($youtube_id){
insert youtube video in DB (with discription, title etc)..
}

If you have anything please give me.. i am almost done the script :(

THanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.



youtube_import($youtube_id){



I've written a dedicated function :)
What are you doing in the video embeds class? :)
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on

youtube_import($youtube_id){



I've written a dedicated function :)
What are you doing in the video embeds class? :)

hehehe i am not doing anything.. i just moving around in  your script to understanding your coding ..

BTW its my idea.. i have made this function name.. i don't know its is in your youtube.php file :)

let me clear what i want to do..

in config_vibe.php fiel

i have defind a variable..
define( 'add', 'add' );

in index.php file
case add:
        $com_route = ABSPATH."/com/com_add.php";       
        break;

i have created a new file /com/com_add.php
and then my URL look like this..

http://website.com/add/youtubeid

in /com/com_add.php file i will use a function to insert youtube video in db and redirect to the watch URL

YouTube search function will be only for register user.

Thanks,


Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Sounds good technically! I did the same in V2, keep it for registred only!
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Sounds good technically! I did the same in V2, keep it for registred only!

So know i need your help to fetch the youtube detail like description, keywords, title etc. and the mysql query to add data in database..

I am waiting..
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

You just need to pass that youtube id to that function, and it will do all the rest, grab them, add them to database.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

ahhh Finally able to get result from YouTube and also when someone click on video its added in database and display the video to the users :)

What i have done with this script..

1. Script able to rewrite the whole description and title using synonym
2. Ability to create thumbnail uploaded Mp4, FLV files using ffmepg
3. Search Directly from Youtube (without server side bandwidth usage - youtube json api) and when someone click on video its redirect to the watch video (after added in database). only for register users..


Next Planning:

1. Dynamic Pages system
2. Ads Management system :)


Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

repute

Sounds great are these mods available for purchase?
  •  

Marius P.

Quote from: sanishan on
Next Planning:

1. Dynamic Pages system
2. Ads Management system :)


Thanks,

This are also on my "next stuff" list.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

repute

PS Did I say you are doing an awesome job, thanks Mario!!!
  •  

Marius P.

Quote from: repute on
PS Did I say you are doing an awesome job, thanks Mario!!!

Thank you! There still small slips, we will release a patch for several php files, including language editor.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: repute on
Sounds great are these mods available for purchase?

I won't sale i will share to everybody in this forum.. :)

I am testing all my changing, also doing some tweak for fast loading time..
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

repute

Dude! Your the best thanks mate, will help debugging!
  •  

sanishanTopic starter

Quote from: @Mario on
This are also on my "next stuff" list.

That's good to know..

So I just stop ad management and dynamic system work right know..

Thinking about Dynamic Video RSS module..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Quote from: repute on
Dude! Your the best thanks mate, will help debugging!

No problem.. just give me 1-2 days.. i will do something new, i promises you will like it :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

repute

  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Uhh, that translator looks bad my friend, has no sense what i'm reading as translated. Other than that : great job!
But this word replaces will always do more bad than good...I would prefer somebody to be able to read what he's watching and not rofl, maybe a common replacements matrix like the seo function does would be best, I am planning one for PHPVibeX's Redtube imports.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Uhh, that translator looks bad my friend, has no sense what i'm reading as translated.

I know.. I have made the module, its up to you how good you make the synonam database.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Did you check Automatic Text Rewriter ? I was planning to check it out, but didn't find time yet.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Did you check Automatic Text Rewriter ? I was planning to check it out, but didn't find time yet.

Yes i have seen this before, and i am using almost same database,

My Rewrite script automatically use any random word from the synonym database, Its very hard to rewrite something using multiple drop down menu, you can't use with drop down with Auto Fetch or scheduled post .

Its batter if you use only for description because most of people don't read description,

Thanks,



Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

I have made another change..

Change website color from admin panel.

1000's for variation to change color

1. Body color
2. Header BG, Border Color
3. Search BG, Border and Focus Color
4. Heading Color
5. Heading Underlines Color
6. Footer Color

Working on something will publish all my update very soon..

Will be upload video demonstration very soon :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Quote from: sanishan on
I have made another change..

Change website color from admin panel.

1000's for variation to change color

1. Body color
2. Header BG, Border Color
3. Search BG, Border and Focus Color
4. Heading Color
5. Heading Underlines Color
6. Footer Color

That's cool. Make sure you apply the custom css via a shortcode to header, not by a php file which calls load.php again, cause that would be heavy and pointless.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
That's cool. Make sure you apply the custom css via a shortcode to header, not by a php file which calls load.php again, cause that would be heavy and pointless.

I am doing something different :) i am using get_option(); function which is you using all over the script,

If you give me example how to use custom shortcode let me know..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

I get how you made the option, I just want to know how did you inject it in the theme, there are 3 ways to do this, wonder which one you picked.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
I get how you made the option, I just want to know how did you inject it in the theme, there are 3 ways to do this, wonder which one you picked.

I don't know what is the correct way.

but i did same as youtube search..

Create a file in com/com_css.php

create a file in root (where you find index)
style.php

Add all vibe_style.css sheet in style.php

Add the function get_option(); where i want to put the value.

Include the style.php inside the com_css.php file

Inside index.php and vibe_config.php i add the page value

"style.css"

Now i am able to get style sheet by simply enter http://site.com/style.css

add the header('Content-Type: text/css'); in com_css.php to output file as css.

Change the css path inside the tpl.global.php (completely removed the vibe_style.css file).

change the images path inside the style.php file.

I hope you understand.

I think its easy for me so i did that.. (and did not overload to anything).

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

No, that's a really bad way because it's heavy!

Simply inject them in

function header_add()


like style overwrite


<style>
code to generate them
</style>


at tpl.globals.php


this is less resource consuming way.


Basicly you doubled the page load the way you did it.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
No, that's a really bad way because it's heavy!

Simply inject them in

function header_add()


like style overwrite


<style>
code to generate them
</style>


at tpl.globals.php


this is less resource consuming way.


Basicly you doubled the page load the way you did it.


I am confused..

What i have to inject using header_add()?

tpl.globals.php file code

function header_add(){
global $page;
$head = '
<link rel="stylesheet" type="text/css" href="'.site_url().'style.css" media="screen" />


How do i assign the get_option() to css?

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

oh.. okay you mean..

I added my style inside

<style>

my css code with PHP
</style>

and added in side the header_add();

so can i use the get_option(); inside the tpl.globals.php?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Use the extra filter




function sanishan_css() {
$css = '<style>';
$css .= '#fixed {backgound-color:'.get_option("background").'}';
$css .= '</style>';
}
add_filter('filter_extracss', 'sanishan_css');



I didn't run this in php editor and i'm tired, so follow the lines, not the code, also add protection for when it's empty (or add the default values by default in the options).


Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Use the extra filter




function sanishan_css() {
$css = '<style>';
$css .= '#fixed {backgound-color:'.get_option("background").'}';
$css = '</style>';
}
add_filter('filter_extracss', 'sanishan_css');



I didn't run this in php editor and i'm tired, so follow the lines, not the code, also add protection for when it's empty (or add the default values by default in the options).





Done..

Now i am understand completely...

:)

Thanks for your help..
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Quote from: sanishan on
Done..

Now i am understand completely...

:)

Thanks for your help..

With pleasure! I'm here to help!
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

I have changed the code as you told me :)

Everything working great.

Have a nice day/night

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Cool! There many useful functions and filters in PHPVibe ;)
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

yes.. i am going through your code and its like a maze but its not..

Is there any documentation that i could read and understand all the add_fillters hook?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Not yet, we didn't even upgrade the plugins.
In time we will build it.
Wordpress filter tutorials can help you build custom filters all around, they act the same.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

leen12

wow nice work, i would like to check out your admin colour thing if you dont mind sharing it or posting a tutorial as for how to use it, also would like to be able to remove all blue instead of leaving the blue separator though..


any help would be great thanks
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

I am working on the lyrics feature, i hope i could done it soon,

I need @MARIO advice, Do i need to store lyrics in database or just fetch lyrics everytime when someone watch?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

You have the "srt" database field available as $video->srt in the video page, use that one for the link to the lyrics.
You wanna add them as a subtitle in player? Or how do you plan this?
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
You have the "srt" database field available as $video->srt in the video page, use that one for the link to the lyrics.
You wanna add them as a subtitle in player? Or how do you plan this?

My plane is little bit complicated.

1. display below the video box before the comment box.
2. Use a auto scroll lyrics based on the video time (duration).

I don't want to display as subtitle,

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Still, you can use that field, on design implementation part, you're on your own.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Still, you can use that field, on design implementation part, you're on your own.

I want to share all my 4 plugin, let me know how i can do that.. directly share at forum or  you will review before share to public?

1. Youtube Rewrite
2. Video Thumbnail ffmeg
3. Template Coloring
4. Youtube json API Search and Import

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

You can share them here for now as I haven't rebuilt the marketplace.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

mastodon

yaaaaaaaaaaaaaa. guys i need that SRT feature and the ffmpeg conversion hook :D if some of you could help me with that would be much appreciated :D

  •  

sanishanTopic starter

Quote from: mastodon on
yaaaaaaaaaaaaaa. guys i need that SRT feature and the ffmpeg conversion hook :D if some of you could help me with that would be much appreciated :D



what is SRT?

ffmpeg conversion can't be possible at this time, I will try to put this in next update.

i hope @mario could do that :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

well, i'd like to be able to upload videos that automatically fills in the video duration and takes the thumbnail. And among the video to be able to upload a .srt file ( subtitles )

This is something i've been waiting for like 4-5 months :D i got the project on pending since the prior version of PhpVibe due to this. If you guys need a testing server for ffmpeg conversions and stuff let me know. I could provide you with a cPanel account with ffmpeg/yast/flvtool2 support for testing purposes.
  •  

sanishanTopic starter

Quote from: mastodon on
well, i'd like to be able to upload videos that automatically fills in the video duration and takes the thumbnail. And among the video to be able to upload a .srt file ( subtitles )

This is something i've been waiting for like 4-5 months :D i got the project on pending since the prior version of PhpVibe due to this. If you guys need a testing server for ffmpeg conversions and stuff let me know. I could provide you with a cPanel account with ffmpeg/yast/flvtool2 support for testing purposes.

Sorry i can't do that.. only hope is @mario..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

I will release a ffmpeg plugin.
The srt field is already in the database, it just needs a field in upload process with link to the subtitle/or subtitle uploader and the hook to jwplayer (for flowplayer the hook exists).
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

mastodon

well... lets hope my poor php skill will help me implement that  8)  ;D
  •  

Martin

sanishan.. can u share this files with us so everybody do not have to look for where and how to put this codes... I specifically need the one for Youtube search and import...

thanks

sanishanTopic starter

Quote from: Martin on
sanishan.. can u share this files with us so everybody do not have to look for where and how to put this codes... I specifically need the one for Youtube search and import...

thanks

Right know i am uploading the files.. its nearly 30mb with ffmpeg bin for windows.

Its take a while i am on 1mb connection :(

Thanks,

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

can u give me instructions then how i can make the youtube change only, because i don't want anything else

sanishanTopic starter

I have done so far.

1. Youtube Search using json API will not index in search engine but when someone click on video its automatically added in database (only for register users).
2. Youtube Title and description auto rewrite using synonym database.
3. Creating a thumbnail for upload mp4,flv video using ffmpeg.
4. Change website color from Control Panel.

Demo: http://taaji.com
Video: https://vimeo.com/76421903
Video 2: http://taaji.com/watch-video/158/phpvibe-template-color-variation/


Download Link:
https://app.box.com/s/k0ackqw2z9qmhswcik32

In Zip file also i have include the instructions files.

Note: I am not responsible something wrong after replacing these updates, always make backup before doing something. If you find any bug or problem in these updates leave message in this thread, i will try to help you guys.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Quote from: Martin on
can u give me instructions then how i can make the youtube change only, because i don't want anything else

I have just share my work with you guys, I tried my best to make this simple but if there is any problem leave me a message in this thread, Also you could find youtube changes module/plugin/update inside the zip file.
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

does the Youtube script check if this video already doesn't exist in database or?

sanishanTopic starter

Quote from: Martin on
does the Youtube script check if this video already doesn't exist in database or?

if you did not enable the allow duplicate from the admin panel (dashboard->configuration), this will check if youtube video existed or not.
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

I found one problem....

when there is more files loaded up from MYSITE search it... it doesn't show them like they suppose to be

sanishanTopic starter

Quote from: Martin on
I found one problem....

when there is more files loaded up from MYSITE search it... it doesn't show them like they suppose to be

what is your website URL? PM me.
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  


sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

I didn't get to check it yet, but I'm really happy somebody is giving interest in publicly developing PHPVibe mods.
Thanks you and good job!
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

l1den

pHpVibe:
www.99mega.com
www.90mega.com
www.splatporn.com
  •  

Martin

I have some error file coming up with codes:


[10-Oct-2013 22:31:14] PHP Notice:  Undefined variable: video in /home2/auto/public_html/all/vidbg.com/com/com_video.php on line 10
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 55
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 57

sanishanTopic starter

Quote from: Martin on
I have some error file coming up with codes:


[10-Oct-2013 22:31:14] PHP Notice:  Undefined variable: video in /home2/auto/public_html/all/vidbg.com/com/com_video.php on line 10
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 55
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 57
What plugin are you trying to use?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

No plugins nothing... it's just a error_log file created in my ROOT... it's original phpvibe 3.3 rc2 + youtube search from you...

sanishanTopic starter

what is the code on line 55 and 57 on tpb.globals.php?

and online line 10 com_video.php

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Is this mods related or not? I see you double posted it http://www.phprevolution.com/forum/development/phpvibe-3-3-rc-2/msg12019/?topicseen#msg12019

Not I or Sanishan can help if you are not specific...
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

I forgot to add the edited JS file inside the ffmpeg thumbnail generated module.

Download the JS file and place inside the /tpl/main/js directory
https://app.box.com/s/56rre2x4lrszez6tt7eb

Thanks
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

I have write the SRT (Subtitle) plugin,

Work on jwplayer5 + jwplayer6 and flowplayer, I am unable to get work with mediaelementplayer

Only SRT file will be work for know..

I am planing to sell this module what you guys think?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

My own opinion: I think you should have sold the ffmpeg one. This is just 4-5 lines of text and an upload field plus processing.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
My own opinion: I think you should have sold the ffmpeg one. This is just 4-5 lines of text and an upload field plus processing.

Hi!

First of all i don't understand what you are trying to say?

I am not using ffmpeg to render SRT with video because not all phpvibe script buyer have access to VPS or dedicated server, I am separately store the srt file and load srt file inside the player,

I already spend lot of hours on developing the modules, I will continuously developing the module for PHPVibe, As far i know PHPVibe is a good option to use,

I could done 1000's of thing with it.

I did not use your srt filed in video table, because you using mediumtext which is bad practice to store 55 character long string in it.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

I've simply said ffmpeg was more complicated, and would have got you more sales.
You can image if I put a srt field that the subtitles will be a part of PHPVibe by standard soon.
It doesn't need more, it will work on /media/srt/ as storage and just save the srt's name, for example my-movie.srt (no point putting more in database).
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
I've simply said ffmpeg was more complicated, and would have got you more sales.
You can image if I put a srt field that the subtitles will be a part of PHPVibe by standard soon.
It doesn't need more, it will work on /media/srt/ as storage and just save the srt's name, for example my-movie.srt (no point putting more in database).

Your example is very good, its reduce the load of mysql.

BTW i am going to create a video conversion plugin which is support  (*.flv) (*.wmv) (*.avi) (*.ogg) (*.mpg) (*.mp4) (*.mov) (*.m4v) and convert into Mp4

Requirements will be


  • Linux Os / Apache
  • PHP 5.3+
    • PCRE( Perl-Compatible )
  • PhpVibe 3.3  Rc2
  • Vps or Dedicated Server
  • FFMPEG
    • Compile With Video and Audio Codec
  • shell_exec and Exec must be enable
  • safe_mode Off
  • Cron Job Access to run conversions Script ever XX minute
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

mastodon

Well done Sanishan. That is something I'm willing to pay for, SRT plugin + ffmpeg conversion! :D

Keep me posted!

If you need testing environments I could provide you with a vps.

Regards,
Gabriel
  •  

sanishanTopic starter

Quote from: mastodon on
Well done Sanishan. That is something I'm willing to pay for, SRT plugin + ffmpeg conversion! :D

Keep me posted!

If you need testing environments I could provide you with a vps.

Regards,
Gabriel

Thanks for you offer, I already have a Dedicated server and also i have linux installed on my PC.

I think i don't need VPS hosting.. if i need anything i will contact you.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

I almost done the most difficult part of the mod, conversion the video.

Working on notification which you received if video is not yet converted :)

Right know i am only using the h264 (X264) codec which give us high quality vidoe/audio and less storage usage. Its best for Mp4 video only, (Mp4 Video could easily supported on Smart Phone, PC and Tablets).

If you have any suggestion let me know.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Complete the Video Conversion, Doing some debugging and Subtitle implementation,

Demo will be provided after "EID" (in 2 days).

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

awesome job! Once its working and you have the implementation working let us know where we could buy it and the price :)
  •  

sanishanTopic starter

Quote from: mastodon on
awesome job! Once its working and you have the implementation working let us know where we could buy it and the price :)

I have'nt decide the price and the where i will sale the update :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

I need a small help from @MARIO

Mario is there any way we could change the player embed option buy using the HOOK?

I did not find a way.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

if i do remember well, you could edit the player options through the file /lib/class.providers.php
  •  

sanishanTopic starter

Quote from: mastodon on
if i do remember well, you could edit the player options through the file /lib/class.providers.php
I have already did, but  i am looking for alternative way which is did not disturb the class.providers.php file
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

So finally I have complete the script, now creating the documentation and the installation files,

Demo will be uploaded in next few hours.. :)
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Sorry, missed your question.
The embed has no filters applied for now. But you can setup your own filters where the embed is returned to not edit a lot of code in that class (code which will be updated periodically)
This is a nice guide which applies to PHPVibe as well http://wp.smashingmagazine.com/2012/02/16/inside-wordpress-actions-filters/
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Sorry, missed your question.
The embed has no filters applied for now. But you can setup your own filters where the embed is returned to not edit a lot of code in that class (code which will be updated periodically)
This is a nice guide which applies to PHPVibe as well http://wp.smashingmagazine.com/2012/02/16/inside-wordpress-actions-filters/

I will check.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

well done sir! well done. do you have any eta regarding this script? i really need it badly amoung the sustitle system
  •  

sanishanTopic starter

Quote from: mastodon on
well done sir! well done. do you have any eta regarding this script? i really need it badly among the sustitle system

I am setting up the website were i will sale and fixing the some bugs which i found after uploading the demonstration video :)
I will publicly released in 1-2 days max.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

Sanishan.. the Youtube search plugin disappears after a couple of days.. to make it show up AGAIN I have to wipe the cache do you know why is this happening?

sanishanTopic starter

Quote from: Martin on
Sanishan.. the Youtube search plugin disappears after a couple of days.. to make it show up AGAIN I have to wipe the cache do you know why is this happening?
I don't know as far as i study script only create the mysql cache, and Youtube Search Module don't required any spacial mysql query to execute.

Please keep in mind youtube search option is only available for register users only.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

I have create this script to work with windows server as well.. :)

I will notify you as soon as i complete the video conversion script testing.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

PHPVibe Video Conversion Module complete.

For demonstration visit:
http://taaji.com

Register and upload your video,

After successfully upload video please wait 5-10 minute to run the cron job to convert video into mp4, (its take time depend on the video size, On my server its take less then 1 minute for 5 minute video to convert into 640x390, Mp4 Video).

If you uploaded the mp4 video then no need to wait its could be play directly inside the player instantly :)


Price for this module will be 17.95€

If you find any bug while you testing please let us know, we will fix it as soon as possible.

Important Note:

  • Please don't upload any adult content for testing
  • If you see message sorry unable to convert its mean your video is corrupted or not supported by ffmpeg
  • we are using the ffmpeg with h264 codec video and ACC Codec for Audio conversion
  • Demonstration Website is running on Linux OS (Centos).
  • Module will support all Linux os which support FFMPEG with h264 and ACC codecs
  • Module also work on Windows OS by using ffmpeg.exe binary file could be download from ffmpeg official site


Thanks,
Sanishan
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

does it support the subtitle upload for videos too?
  •  

sanishanTopic starter

Quote from: mastodon on
does it support the subtitle upload for videos too?

You could see the subtitle upload filed below the video upload. only srt support right know due to player compatibility.


Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Sanishan can you do me a favor and point out VERY CLEARLY that you are not affiliated with our team.
I don't want chargebacks/mails to support for external plugins. Hope you understand, this how everybody does it.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: @Mario on
Sanishan can you do me a favor and point out VERY CLEARLY that you are not affiliated with our team.
I don't want chargebacks/mails to support for external plugins. Hope you understand, this how everybody does it.

Done :)

http://phpvibemod.com/index.php?route=common/home
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Plugin Download links are no longer available on Box.com

Please download it from http://phpvibemod.com/

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Right know i am working on another cool module, Which help you to filter badwords (unwanted words) from the video title, description, tags

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

julsg

Hi Sanishan

Do you accept custom job?

It will be a Video Tab- (dont know if correct term) the concept is that upon upload an embbed video with 3 sources. I want to appear the video like Video 1|Vide02|Video3 when viewing by the users.

Regards


  •  

leen12

sanishan i installed your ffmpeg module but it does not seem to be working, also when i installed it it overwrote the files i had the theme changed with and you other plugin for the admin colours thing, it was dark blue and stuff now its back to the origional,

i cannot change the colours in admin cp anymore,

any ideas what these problems are?

let me know please thanks
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: julsg on
Hi Sanishan

Do you accept custom job?

It will be a Video Tab- (dont know if correct term) the concept is that upon upload an embbed video with 3 sources. I want to appear the video like Video 1|Vide02|Video3 when viewing by the users.

Regards




Thanks for contacting, Its look like you want to add video likes parts (for movies or clips).

This could be possible but you can't update the script if any update area made, due to changing in database and other core files.

You will have to contact me before updating the script.

Contact me for more detail
http://phpvibemod.com/index.php?route=information/contact

or PM me your skype id for further conversation.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Quote from: leen12 on
sanishan i installed your ffmpeg module but it does not seem to be working, also when i installed it it overwrote the files i had the theme changed with and you other plugin for the admin colours thing, it was dark blue and stuff now its back to the origional,

i cannot change the colours in admin cp anymore,

any ideas what these problems are?

let me know please thanks
If you upload other module after "template color module" then this will overwrite the tpl.global.php file and remove the color changing css code.

You have to reupload the "template/tpl/main/tpl.global.php" file from the Template Color Module ZIP file.

Also send me your website using PM and let me know.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

yea that fixed the theme now i just need to sort out the video upload thing,

thanks again
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
yea that fixed the theme now i just need to sort out the video upload thing,

thanks again

About the ffmpeg video thumbnail plugin, you have to check the ffmpeg path inside the lib/upload.php file.

Also try in SSH  (Linux) or CMD (Windows) to run the ffmpeg correctly?

If you have installed the ffmpeg in /root/bin then you can't use with PHP due to open_basedir permission problem. you have to move the binery (ffmpeg and other codec files) to /usr/local/bin/

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Powerful Blog Plugin has been done..

Every single Site owner must need this to improve SEO and traffic :)

Also in most case you need to notify the users this is the only way you could announce News or PR (Press release).

Video Demonstration:
http://taaji.com/watch-video/367/phpvibe-blog-plugin-lightweight/

Website Demonstration:
http://taaji.com/blog

Will be available on http://phpvibemod.com very soon :)

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

Quote from: sanishan on
About the ffmpeg video thumbnail plugin, you have to check the ffmpeg path inside the lib/upload.php file.

Also try in SSH  (Linux) or CMD (Windows) to run the ffmpeg correctly?

If you have installed the ffmpeg in /root/bin then you can't use with PHP due to open_basedir permission problem. you have to move the binery (ffmpeg and other codec files) to /usr/local/bin/

Thanks,

oh i see, honestly i have no idea where it is installed, i just followed the link to the guide you posted and followed it,

i use cent os6

but i dont know ssh commands etc..

can you maybe give me the command to find where ffmpeg is then give the command to move it to where it should be?

let me know please thanks
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
oh i see, honestly i have no idea where it is installed, i just followed the link to the guide you posted and followed it,

i use cent os6

but i dont know ssh commands etc..

can you maybe give me the command to find where ffmpeg is then give the command to move it to where it should be?

let me know please thanks

This guied will help you to install the FFMPEG
https://trac.ffmpeg.org/wiki/CentosCompilationGuide

If you unable to install I could do that for $10 USD.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

i already followed that guide before this problem
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
i already followed that guide before this problem

BTW i am using the same methods, you have install all the depndence which required to compile the ffmpeg and the codec.
yum install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel


You must have root access to compile the ffmpeg otherwise its will not work (if you are using shared hosting SSH this will not work..).

Thanks,

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

there is an automated ffmpeg script that does it all by itself... it only needs your attention like 3 or 4 times.

checkout http://ffmpeginstaller.com/
  •  

sanishanTopic starter

Quote from: mastodon on
there is an automated ffmpeg script that does it all by itself... it only needs your attention like 3 or 4 times.

checkout http://ffmpeginstaller.com/

Yes is good, but in our case we don't need lot of thing to compile,

In our case we only required
ffmpeg
All codecs
X264
Libtheora
Libvorbis
Libogg
Libwmf
libmp3lame
facc and faad2
Yasm

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

it is my own server, i followed the guide and after that i got the problem, which i then posted here about,

i need instructions from here on not from the start please
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
it is my own server, i followed the guide and after that i got the problem, which i then posted here about,

i need instructions from here on not from the start please

did you installed the ffmpeg or not?

if you don't know please try
ssh commadn
which ffmpeg


if you installed correctly its will show you the ffmpeg path..

If you receiving error please let me know what error is that?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

ah thanks i needed to know the code,

here is what i get
/usr/bin/ffmpeg
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
ah thanks i needed to know the code,

here is what i get
/usr/bin/ffmpeg

ok now open "/lib/upload.php" find:

$ffmpeg = $target_path.'bin/ffmpeg.exe'; //put the relative path to the ffmpeg.exe file
// $ffmpeg='/usr/local/bin/ffmpeg';

Comment the first like which is only for Windows Server.
Uncomment the 2nd line which is only for linux server.
and add the ffmpeg path in it.


Like that:
//$ffmpeg = $target_path.'bin/ffmpeg.exe'; //put the relative path to the ffmpeg.exe file
$ffmpeg='/usr/bin/ffmpeg';

Find:
$second = 2;


Replace with you second where thumbnail generate:
$second = 5;


Thanks,

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

hmm ok that line was already commented out, but
the seconds thing was at 2, i changed it to 5

but there is still no thumbnail, and i still have to put the time in seconds
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
hmm ok that line was already commented out, but
the seconds thing was at 2, i changed it to 5

but there is still no thumbnail, and i still have to put the time in seconds


Hi!
Its look like you php don't allow you to run exec, its possible open_basedir set or safe_mode on.

Please keep in mind in most of case ffmpeg are not allow to execute from php due to the permission problem.

You have to set the ffmpeg binery permission to 777

use this command

cd /usr/bin
chmod 777 ffmepg
or
chmod +x ffmpeg


Need to check more things.
1. check did you put the correct ffmpeg path in the upload.php file?
$ffmpeg='/usr/bin/ffmpeg';?


2.
FInd
exec($command);

Replace with:
exec($command,$out_exec);
  //print_r($out_exec);
     $search='/Duration: (.*?)[.]/';
             foreach ($out_exec as $value){
                 $out_execx.=$value;
             }
file_put_contents('ffmpeg_output.txt',$out_execx);

This will create the ffmpeg output inside the ffmpeg_output.txt file (possibly you could find inside the LIB directory)
send me the output i will check and let you know the final problem.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

yea i had the correct path etc set,

here is the output file

thanks again sanishan
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
yea i had the correct path etc set,

here is the output file

thanks again sanishan

Ffmpeg output telkinf me that thumnail is generated

Please check the media/thumb dir for confirmation that thumnail generated cirrectly?

If yes then there is must be a js problem
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

hmm yea the thumbnails are inside the media/thumbs folder

thanks again
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
hmm yea the thumbnails are inside the media/thumbs folder

thanks again

You have to reupload the js file in your server correctly,

You could find latest js file fixed in this thread.

THanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

thanks for the help sanishan,

i tried to download the js file but it says the file has been removed can you reupload it please? thanks again
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
thanks for the help sanishan,

i tried to download the js file but it says the file has been removed can you reupload it please? thanks again

Please download the latest version from http://phpvibemod.com/

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

mastodon

hey there sanishan, it appears that i ran into some troubles:

Here's my configuration:

FFmpeg version 0.6.5, Copyright (c) 2000-2010 the FFmpeg developers
  built on Jan 29 2012 17:52:15 with gcc 4.4.5 20110214 (Red Hat 4.4.5-6)
  configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --incdir=/usr/include --disable-avisynth --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC' --enable-avfilter --enable-avfilter-lavf --enable-libdc1394 --enable-libdirac --enable-libfaac --enable-libfaad --enable-libfaadbin --enable-libgsm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-vdpau --enable-version3 --enable-x11grab
  libavutil     50.15. 1 / 50.15. 1
  libavcodec    52.72. 2 / 52.72. 2
  libavformat   52.64. 2 / 52.64. 2
  libavdevice   52. 2. 0 / 52. 2. 0
  libavfilter    1.19. 0 /  1.19. 0
  libswscale     0.11. 0 /  0.11. 0
  libpostproc   51. 2. 0 / 51. 2. 0


The system is a:
cPanel environemnt running version 11.40.x


Everything works great ( thumbnail generation, duration extraction, uploads, etc ),but when I run vid_ffmpeg.php i get this error:

Unable to Converting the video


I've also configured the ffmpeg path correcly
/usr/bin/ffmpeg


any ideas why is this happening?
  •  

sanishanTopic starter

Quote from: mastodon on
hey there sanishan, it appears that i ran into some troubles:

Here's my configuration:

FFmpeg version 0.6.5, Copyright (c) 2000-2010 the FFmpeg developers
  built on Jan 29 2012 17:52:15 with gcc 4.4.5 20110214 (Red Hat 4.4.5-6)
  configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --incdir=/usr/include --disable-avisynth --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC' --enable-avfilter --enable-avfilter-lavf --enable-libdc1394 --enable-libdirac --enable-libfaac --enable-libfaad --enable-libfaadbin --enable-libgsm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-vdpau --enable-version3 --enable-x11grab
  libavutil     50.15. 1 / 50.15. 1
  libavcodec    52.72. 2 / 52.72. 2
  libavformat   52.64. 2 / 52.64. 2
  libavdevice   52. 2. 0 / 52. 2. 0
  libavfilter    1.19. 0 /  1.19. 0
  libswscale     0.11. 0 /  0.11. 0
  libpostproc   51. 2. 0 / 51. 2. 0


The system is a:
cPanel environemnt running version 11.40.x


Everything works great ( thumbnail generation, duration extraction, uploads, etc ),but when I run vid_ffmpeg.php i get this error:

Unable to Converting the video


I've also configured the ffmpeg path correcly
/usr/bin/ffmpeg


any ideas why is this happening?

Hi!

I already provide you the customer support at
http://www.phprevolution.com/forum/phpvibe-mods-and-plugins/auto-video-convertion-plugin-v1-phpvibe/

And its was working for you?

Here is the solution to check the exact problem.
open vid_ffmpeg.php

find:
//  echo $ffmpeg_cmd;
    // print_r($outx);

Replace with:
echo $ffmpeg_cmd.'
';
 print_r($outx);

Send me the output detail which you got in your browser.

Thanks
,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

hi sanishan i ended up having to restart my server yesterday as i could not access my hosting zpanel,

after restarting all my websites and everthing in the server is having issues i cannot connect to mysql etc,
i was then advised to try change password by zpanel team, after trying that i got this error
PHP Warning:  PHP Startup: Zend Guard Loader: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/ixed.5.3' - /usr/lib64/php/ixed.5.3: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: SourceGuardian: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: SourceGuardian: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ffmpeg.so' - /usr/lib64/php/modules/ffmpeg.so: cannot open shared object file: No such file or directory in Unknown on line 0
<style type="text/css"><!--
            .dbwarning {
                    font-family: Verdana, Geneva, sans-serif;
                    font-size: 14px;
                    color: #C00;
                    background-color: #FCC;
                    padding: 30px;
                    border: 1px solid #C00;
            }
            p {
                    font-size: 12px;
                    color: #666;
            }
            </style>
            <div class="dbwarning"><strong>Critical Error:</strong> [0100] - Unable to connect or authenticate to the ZPanel database (<em>zpanel_core</em>).<p>We advice that you contact the server administrator to ensure that the database server is online and that the correct connection parameter are being used.</p></


which is as a result of the ffmpeg install instructions i got before, can you possibly help me fix it?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
hi sanishan i ended up having to restart my server yesterday as i could not access my hosting zpanel,

after restarting all my websites and everthing in the server is having issues i cannot connect to mysql etc,
i was then advised to try change password by zpanel team, after trying that i got this error
PHP Warning:  PHP Startup: Zend Guard Loader: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/ixed.5.3' - /usr/lib64/php/ixed.5.3: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: SourceGuardian: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: SourceGuardian: Unable to initialize module
Module compiled with module API=20090626
PHP    compiled with module API=20100525
These options need to match
 in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ffmpeg.so' - /usr/lib64/php/modules/ffmpeg.so: cannot open shared object file: No such file or directory in Unknown on line 0
<style type="text/css"><!--
            .dbwarning {
                    font-family: Verdana, Geneva, sans-serif;
                    font-size: 14px;
                    color: #C00;
                    background-color: #FCC;
                    padding: 30px;
                    border: 1px solid #C00;
            }
            p {
                    font-size: 12px;
                    color: #666;
            }
            </style>
            <div class="dbwarning"><strong>Critical Error:</strong> [0100] - Unable to connect or authenticate to the ZPanel database (<em>zpanel_core</em>).<p>We advice that you contact the server administrator to ensure that the database server is online and that the correct connection parameter are being used.</p></


which is as a result of the ffmpeg install instructions i got before, can you possibly help me fix it?

Hi!
My provider instruction did not install the ffmpeg for PHP or ffmpeg-php, my instruction on install separate ffmpeg compiled binary file which we used with exec function.

Looks like you haven't upgraded PHP modules, they are not compatible.

Check extension_dir directive in php.ini. It should point to folder with 5.3 modules.

Since you did upgrade, there is a chance that you are using old php.ini that is pointing to 5.2 modules

Erase the module that can't be initialized and reinstall it.


Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

ok thanks for the reply, sorry about this but i am not very experienced in handling a server and may need a few more instructions,

important note this is zpanel i am running not cpanel

; extension_dir = "./"


and in root i have ffmpeg_build and ffmpeg_sources dir(s)
i have no idea if they are correct or how to delete them,

http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
ok thanks for the reply, sorry about this but i am not very experienced in handling a server and may need a few more instructions,

important note this is zpanel i am running not cpanel

; extension_dir = "./"


and in root i have ffmpeg_build and ffmpeg_sources dir(s)
i have no idea if they are correct or how to delete them,



I am also using zpanel for couple of servers.

zpanel extenstion directory is /usr/lib/php/modules and all compiled module will be available inside it.

You need to recompile all the module.

try this command in ssh

yum install php-zend-gu*   

this will install the zend-gurd module in your server if there is not availabel or maybe its update the module with latest pp.


I can't help you anymore with zpanel i am not expert in it.

Thanks,

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

hmmm ok thanks again sanishan, i am getting a no space error now, not sure what is going on but im almost cetain there is tons of space left i will contact my server provider although it is unmanaged
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

leen12

ok i got a reply from my server provider,
t seems that your system partition, the "roor" or "/" partition is full.
 
If you log into SSH, you can see that by typing:
 
~ df -h
 
You have to free some space. 
 
As you can see, most of your space is on the /home partition, which is only 1% full. I suggest you to move all the data there.
 
Thanks.


i dont really know how to do that, could you possibly help me or tell me the command i need?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
ok i got a reply from my server provider,
t seems that your system partition, the "roor" or "/" partition is full.
 
If you log into SSH, you can see that by typing:
 
~ df -h
 
You have to free some space. 
 
As you can see, most of your space is on the /home partition, which is only 1% full. I suggest you to move all the data there.
 
Thanks.


i dont really know how to do that, could you possibly help me or tell me the command i need?

I have the same problem as you have with zpane, becuase zpanel install in /usr/zpanel , i don't know any command, but i have reinstall the server with new partitions table, only allow /home partition to 100GB but all other page (1770GB) partitions are allowed to /root or '/'

and then install the zpanel on centos 6.4 using zvps auto installer
http://www.zvps.co.uk/zpanelcp/centos-6

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

hmm ok =s,

can you possibly assist me in getting a backup of my websites before i attempt that?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
hmm ok =s,

can you possibly assist me in getting a backup of my websites before i attempt that?

I don't think so i could help you... the only thing is possible, backup everything, files and database, restore after that.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

Sanishan the youtube plugin doesn't work take a look:

http://vidbg.com/show/sean+paul

when u are registered and u click on video it gives you 404 error instead of watching video

leen12

i have no problems viewing the video, maybe clear your cookies or cache?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  


sanishanTopic starter

Quote from: Martin on
Sanishan the youtube plugin doesn't work take a look:

http://vidbg.com/show/sean+paul

when u are registered and u click on video it gives you 404 error instead of watching video

Hi!
You have to read the installation instruction file properly, its look like you did not add the defind value in vibe_config.php and also inside the index.php file..

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

lwc5757

sanishan, I used your youtube rewriter but it seem like not rewriting description when i share video from youtube.
  •  

sanishanTopic starter

Quote from: lwc5757 on
sanishan, I used your youtube rewriter but it seem like not rewriting description when i share video from youtube.

Did you import the vibe3.sql database in the existed phpvibe database?

And Also upload the class.youtube.php inside the lib directory.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

lwc5757

Quote from: sanishan on
Did you import the vibe3.sql database in the existed phpvibe database?

And Also upload the class.youtube.php inside the lib directory.

Thanks,

I din't see to have vibe3.sql and class.youtube.php when I downloaded your file
what I have are
com/com_add.php
tpl/main/tpl.globals.php
tpl/main/videolist.php
tpl/main/video-loop.php
tpl/main/youtube_search.oho
index.php
vibe_config.php
Instruction.txt

I read the instruction, followed every steps and overwrite every files but seem it's not working.
  •  

sanishanTopic starter

Quote from: lwc5757 on
I din't see to have vibe3.sql and class.youtube.php when I downloaded your file
what I have are
com/com_add.php
tpl/main/tpl.globals.php
tpl/main/videolist.php
tpl/main/video-loop.php
tpl/main/youtube_search.oho
index.php
vibe_config.php
Instruction.txt

I read the instruction, followed every steps and overwrite every files but seem it's not working.


My Bad..

Its Youtube Search module, i just fix the link, it was wrong download link to the rewrite module, please place another free order to download the rewrite plugin.


Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

lwc5757

Quote from: sanishan on
My Bad..

Its Youtube Search module, i just fix the link, it was wrong download link to the rewrite module, please place another free order to download the rewrite plugin.


Thanks,
It's dont seem to be work too. When I click "share media by link" and paste youtube video, the description wont change
  •  

leen12

hey sanishan, sorry i cannot download the js file,,

i managed to get my server sorted just had to delete a few files, the first link is removed and the next one is asking me to pay?


i also just have to say your website is niceee =)
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
hey sanishan, sorry i cannot download the js file,,

i managed to get my server sorted just had to delete a few files, the first link is removed and the next one is asking me to pay?


i also just have to say your website is niceee =)

Hi!
Please download the complete plugin from the website http://phpvibemod.com.

Thanks,

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
yes i know but its asking me to pay for it?

Check you shopping cart, there is must be a premium plugin in your cart, or select "free check" option from payment method, its only visible if amount is 0

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

nope i have not even made an account, i have not purchased this before. i downloaded it when you released it to the public for free..
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

leen12

if you are not going to give me a link to the js can you tell me how to remove this?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
if you are not going to give me a link to the js can you tell me how to remove this?

Sorry i can't give you saperate js link, you have to create an account on http://phpvibemod.com/ and then download the plugin after completing the free checkout.

To remove this, just simple replace old files which you have made backup before.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  


leen12

ohhh i feel stupid lol =P

i thought the video convertion plugin and the ffmpeg thumbnail was the same plugin
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

leen12

hmm this is weird..

ok i downloaded the updated version from your website, then backed up my files and uploaded the new plugin,still having to re-upload my old global.tpl file or whatever,

after that i tried my video again, still no thumbnail any ideas?
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

Marius P.

Quote from: leen12 on
after that i tried my video again, still no thumbnail any ideas?

You need to see what the actual error is. php wrappers on ffmpeg are usually not the issues, you need to check if there is any error in the conversion, run a simple php file with a basic ffmpeg command for thumb extraction, see if that works.
This is why I don't want to add ffmpeg, to many headaches.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishanTopic starter

Quote from: leen12 on
hmm this is weird..

ok i downloaded the updated version from your website, then backed up my files and uploaded the new plugin,still having to re-upload my old global.tpl file or whatever,

after that i tried my video again, still no thumbnail any ideas?

In this thread i already told a way how could you trace the error.
http://www.phprevolution.com/forum/phpvibe-mods-and-plugins/sanishan%27s-changes-of-phpvibe-3-3-rc-2/msg12454/#msg12454

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

sanishanTopic starter

Quote from: lwc5757 on
It's dont seem to be work too. When I click "share media by link" and paste youtube video, the description wont change

Sorry for late reply, i haven't tested this for Single sharing, i tested with youtube bulk imoport, cron and 1by1 import. and its work for me.

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

ok sorry im not really experienced with websites etc,

ok i download that error file from my website again can you please take a look at it?

as for restoring the website i cannot do that anymore as my main backup from before installing that file is on my desktop pc which is now broke =( lol

the error file is attached

thanks again sanishan
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
ok sorry im not really experienced with websites etc,

ok i download that error file from my website again can you please take a look at it?

as for restoring the website i cannot do that anymore as my main backup from before installing that file is on my desktop pc which is now broke =( lol

the error file is attached

thanks again sanishan

This attached file telling me that your file is converted successfully..

What exactly the problem? could you explain more?

Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

sanishanTopic starter

Quote from: leen12 on
i am getting no thumbnail on uploaded videos

While upload did the thumbnail generating?
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

leen12

yes i think so it did the last time i told you of this issue i think i will check now
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

leen12

lol this is weird,

this issue has been here for like 3 weeks i think maybe a bit less, i have uploaded numerous videos all with no thumbnail

now i just tried to upload one of them again and it worked and made the thumbnail lol i dont think i changed anything,

sorry for the trouble and thanks for the help again sanishan
http://hip-hop99.com best hip hop music website
http://social-nuke.com free facebook likes and shares
https://wppluginscheap.com Wordpress plugins and themes cheap
  •  

Martin

Hey Sanishan can u reaupdate the plugin for the Youtube search + add

Martin

if not him can anyone import the changes for the youtube search, at least can we make it BY CHOICE?

l1den

Quote from: sanishan on
I have made another change..

Change website color from admin panel.

1000's for variation to change color

1. Body color
2. Header BG, Border Color
3. Search BG, Border and Focus Color
4. Heading Color
5. Heading Underlines Color
6. Footer Color

Working on something will publish all my update very soon..

Will be upload video demonstration very soon :)

Thanks,

Anyone else have this plugin?
pHpVibe:
www.99mega.com
www.90mega.com
www.splatporn.com
  •  

Similar topics (7)

Replies: 1
Views: 865

Replies: 0
Views: 2366

Replies: 3
Views: 1288

Replies: 2
Views: 841