GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Announcements (https://gfy.com/forumdisplay.php?f=44)
-   -   Tech Import tube videos, livecam feeds, picture galleries and anything else into WordPress (https://gfy.com/showthread.php?t=1259368)

MrT31 06-04-2018 05:52 AM

Hello :thumbsup

Two questions please .

I use the the preset Smart Script tube with kvs pro . Work like a charm but I want to try
with short chode of fluid player , the basic and extended .

1/ can I do

Code:

$post['post_content'] =[fluid-player video=”customfieldurlvideo or xml value <video>″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
or

Code:

$post['post_content'] = [fluid-player-extended
    vast_file="wanttoberichxml"
    layout="default"
    auto-play="autoPlay"
    logo="/mygreatlogopng"
    logo-position="top right"
    logo-opacity=".8"
    ad-text="adText"
    ad-cta-text="adCTAText"
    html-on-pause-block-width="300"
    html-on-pause-block-height="300"
    responsive="true"]

    [fluid-player-multi-res-video]
        [
            {"label": "720", "url": "customfieldurlvideo or xml value <video>"},
            {"label": "480", "url": "customfieldurlvideo or xml value <video>"}
        ]
    [/fluid-player-multi-res-video]

    [fluid-player-html-block]
        <div>
            <img src="/pubbannerpng" />
        </div>
    [/fluid-player-html-block]

[/fluid-player-extended]

Can I put in in custom field instead of $post['post_content']


2/

Is it possible to grab some info in a XML e.g "paysitetitle" to put it in wordpress custom taxonomy "studio" by e.g
or in custom taxonomy of a custom post type please ?

thanks a lot :banana

just a punk 06-04-2018 06:09 AM

I can't answer, because din't the the working actual "fluid player". Please post the real life example here. Also, does your WP theme supports it or you have some plugin installed, or all the code must be inserted into the post body by CyberSEO?

MrT31 06-04-2018 03:16 PM

I Use fluidplayer as a plugin

i cannot put url , put it can be found in plugin category in wordpress

Some on my wordpress theme need to grab the player in a custom field (e.g video_code)
and other in the php content as usual.

by example
with a normal smarttubescript xml format


with the preset Smart Script tube with kvs pro

Code:

screen_url->screen_url
screen->screen
clip_url->clip_url
flv->flv
mp4->mp4
duration->duration
paysite->paysite_title

Code:

if (isset($post['custom_fields']['mp4']) && strlen($post['custom_fields']['mp4'])) {
    $post['custom_fields']['flv'] = $post['custom_fields']['mp4'];
    unset($post['custom_fields']['mp4']);
}
$post['guid'] = $post['custom_fields']['clip_url'] . $post['custom_fields']['flv'];
if (!cseo_post_exists($post)) {
    $post['custom_fields']['duration'] = date('i:s', $post['custom_fields']['duration']);
   
    $screen = $post['custom_fields']['screen'];
    if (is_array($screen)) {
        $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen[rand(0, count($screen) - 1)];
    } else {
        $post['custom_fields']['thumb'] = $post['custom_fields']['screen_url'] . $screen;
    }
    cseo_must_be_binary($post['guid']);
    cseo_must_be_binary($post['custom_fields']['thumb']);
    $post['post_excerpt'] = trim($post['post_excerpt']);
    $post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
    unset($post['custom_fields']['screen_url']);
    unset($post['custom_fields']['screen']);
    unset($post['custom_fields']['clip_url']);
    unset($post['custom_fields']['flv']);
} else {
    $post = false;
}


I would to replace

Code:

$post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
by the fluid player 's short code

this one
Code:

[fluid-player video=”url of the video grabbed in the xml ″ vast_file=”wanttoberichxml” vtt_file=”urlthumbsvtt” vtt_sprite=”urlthumbs.jpg” layout=”default”
or this one

Code:

[fluid-player-extended
    vast_file="wanttoberichxml"
    layout="default"
    auto-play="autoPlay"
    logo="/mygreatlogopng"
    logo-position="top right"
    logo-opacity=".8"
    ad-text="adText"
    ad-cta-text="adCTAText"
    html-on-pause-block-width="300"
    html-on-pause-block-height="300"
    responsive="true"]

    [fluid-player-multi-res-video]
        [
            {"label": "720", "url": "url of the video grabbed in the xml "},
            {"label": "480", "url": "url of the video grabbed in the xml "}
        ]
    [/fluid-player-multi-res-video]

    [fluid-player-html-block]
        <div>
            <img src="/pubbannerpng" />
        </div>
    [/fluid-player-html-block]

[/fluid-player-extended]

the most important is to grab the url of the video and put in those short code



thanks again :thumbsup

MrT31 06-08-2018 05:56 AM

ok , I just replace

Code:

$post['post_content'] = '[flv:' . $post['guid'] . ' ' . cseo_save_image($post['custom_fields']['thumb'], $post['post_title']) . ']';
by

Code:

$post['post_content'] or $post['custom_fields']['mycustomfield']= [fluid-player-extended
    vast_file="wanttoberichxml"
    layout="default"
    auto-play="autoPlay"
    logo="/mygreatlogopng"
    logo-position="top right"
    logo-opacity=".8"
    ad-text="adText"
    ad-cta-text="adCTAText"
    html-on-pause-block-width="300"
    html-on-pause-block-height="300"
    responsive="true"]

    [fluid-player-multi-res-video]
        [
            {"label": "720", "url": ' . $post['guid'] . '},
            {"label": "480", "url": ' . $post['guid'] . '}
        ]
    [/fluid-player-multi-res-video]

    [fluid-player-html-block]
        <div>
            <img src="/pubbannerpng" />
        </div>
    [/fluid-player-html-block]

[/fluid-player-extended]

And apparently it works :)

just a punk 06-08-2018 06:19 AM

You can also use the the Fluid Player plugin for WordPress (https://wordpress.org/plugins/fluid-player/) and use these shortcodes:

Simple shortcode example:
Code:

[fluid-player video="foo.mp4" vast_file="vast.xml"  vtt_file="thumbs.vtt" vtt_sprite="thumbs.jpg" layout="default"]
Extended shortcode example:
Code:

[fluid-player-extended
    vast_file="vast.xml"
    layout="default"

    auto-play="autoPlay"
    allow-download="true"
    playback-speed-control="true"

    logo="https://www.fluidplayer.com/images/yourlogo.png"
    logo-position="top right"
    logo-opacity=".8"
    logo-hyperlink="https://www.fluidplayer.com/"

    ad-text="adText"
    ad-cta-text="adCTAText"

    html-on-pause-block-width="100"
    html-on-pause-block-height="100"

    responsive="true"]

    [fluid-player-multi-res-video]
        [
            {"label": "720", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_720.mp4"},
            {"label": "480", "url": "https://cdn.fluidplayer.com/videos/1.3/fluidplayer_480.mp4"}
        ]
    [/fluid-player-multi-res-video]

    [fluid-player-html-block]
        <div>
            <img src="https://www.fluidplayer.com/images/yourbanner.png" />
        </div>
    [/fluid-player-html-block]

[/fluid-player-extended]


MrT31 06-09-2018 06:19 AM

yes , that' s what i've done.

Download and install the fluid plugin

and copy/paste the code like i've post below.

I can grab the video url and put in the short code with ' . $post['guid'] . ' and it works :thumbsup


by the way do you know if it's possible to grab a field of an smart tube xml line to put in in custom post field. by example <performer></performer> to put it in my custom post field that i've created "actresses" .

thanks again :thumbsup

just a punk 06-09-2018 08:56 AM

Quote:

Originally Posted by MrT31 (Post 22284130)
by the way do you know if it's possible to grab a field of an smart tube xml line to put in in custom post field. by example <performer></performer> to put it in my custom post field that i've created "actresses" .

Sure.

1) Enter the feed settings page.

2) Find the "Custom fields" box and put there the following line:

performer->actresses

3) Save the settings :)

Find more information about this feature here: Content Syndicator – CyberSEO

MrT31 06-09-2018 01:36 PM

thanks
In fact I wanted to say custom taxonomy not custom field sorry :anon.

I created in my wordpress theme function.php a custom taxonomy "actresses" and "studio".

And I would like to grab to the xml the <performer></performer> and <website></website> to my custom taxonomy actresses and studio
if it's possible .

thanks again :)

just a punk 06-10-2018 03:36 AM

Unfortunately custom taxonomies are not supported in the current version. But I'm going to implement them in one of the next updates.

Bladewire 06-10-2018 11:03 AM

↑↑↑ Excellent programmer & great tech support :thumbsup

MrT31 06-11-2018 05:05 AM

Quote:

Originally Posted by CyberSEO (Post 22284536)
Unfortunately custom taxonomies are not supported in the current version. But I'm going to implement them in one of the next updates.

Hello ,


Thank you for your answer .

No problem . for the moment Can I grab in xml the <performer></performer> field
to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)

maybe is a dumb question but I have read the content syndicator doc and i didn't understanf how to do it .

just a punk 06-11-2018 07:27 AM

Quote:

Originally Posted by MrT31 (Post 22284992)
Hello ,


Thank you for your answer .

No problem . for the moment Can I grab in xml the <performer></performer> field
to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)

maybe is a dumb question but I have read the content syndicator doc and i didn't understanf how to do it .

You can do it via PHP code.

For categories:
Code:

$post['categories'][] = $xml_tags['performer'];
For tags:
Code:

$post['tags_input'][] = $xml_tags['performer'];
Also you can do it like this:

For categories:
Code:

$post['categories'][] = $post['custom_fields']['actresses'];
For tags:
Code:

$post['tags_input'][] = $post['custom_fields']['actresses'];

magneto664 06-13-2018 01:16 PM

Quote:

Originally Posted by MrT31 (Post 22284992)
No problem . for the moment Can I grab in xml the <performer></performer> field
to put as a tag or category in wordpress ? (not as a custom field , just a wordpress's tag or category)

I think I know what you try to do. I also think about it few weeks ago :)
yes custom taxonomies will be a perfect for it.

just a punk 06-20-2018 08:33 AM

I have tow news for you a bad and a good ones.

A bad news: There is no discount coupons for CyberSEO plugin anymore (at least right now).
A good news: The price on CyberSEO has been refused for almost twice. Now you can order the unlimited domain license for only $99.95 or upgrade your old CyberSEO license ver. 5 or 6 to CyberSEO 7 for $45.95.

magneto664 06-21-2018 06:28 AM

this plugin is so great that once again I would buy it :)

just a punk 07-06-2018 02:04 AM

Just a quick reminder. If you do not use the automatic update feature, make sure to manually update the CyberSEO plugin to the latest edition.

The plugin is changing constantly. For example, yesterday I have fixed some annoying bug related to import of comma- and semicolon-delimited CSV files. Many cool and new features will be added soon. So I recommend you to enable auto updates in the CyberSEO General Settings menu.

Brian mike 07-09-2018 01:59 PM

Quote:

Originally Posted by CyberSEO (Post 22290639)
I have tow news for you a bad and a good ones.

A bad news: There is no discount coupons for CyberSEO plugin anymore (at least right now).
A good news: The price on CyberSEO has been refused for almost twice. Now you can order the unlimited domain license for only $99.95 or upgrade your old CyberSEO license ver. 5 or 6 to CyberSEO 7 for $45.95.

I will gladly give it a try again and try out your forum support too this time:winkwink:

Getting Ready for Tube, Cam, Pin site and more.

Great offer you got there. :thumbsup

just a punk 07-09-2018 02:44 PM

Quote:

Originally Posted by Brian mike (Post 22301602)
I will gladly give it a try again and try out your forum support too this time

Make sure you have an account at the support forum (it's hidden for the unregistered users). If you don't - just let me know and I'll add you there.

Brian mike 07-13-2018 04:09 PM

Quote:

Originally Posted by CyberSEO (Post 22301625)
Make sure you have an account at the support forum (it's hidden for the unregistered users). If you don't - just let me know and I'll add you there.

I have access to the support forum, starting working on my stuff tonight .
Lots of info on your support forum :D . ( did not saw this previously eh eh eh ) :thumbsup

magneto664 07-19-2018 03:26 AM

Will be nice to see what is new and was was fixed in last version.
CyberSEO can U a update a changelog?
CyberSEO Changelog – CyberSEO
tnx

just a punk 07-19-2018 03:33 AM

Quote:

Originally Posted by magneto664 (Post 22307674)
Will be nice to see what is new and was was fixed in last version.
CyberSEO can U a update a changelog?
CyberSEO Changelog – CyberSEO
tnx

Actually not much was changed. Just some bugs were fixed.

* what's new in 7.032
* - Added autoupdate for built-in presets
*
* what's new in 7.033
* - Fixed bug with custom PHP code execution while full text articles are retrieved
*
* what's new in 7.034
* - Fixed category sorting bug during custom PHP code execution
*
* what's new in 7.035
* - Fixed post processing priority issue
*
* what's new in 7.036
* - Better license protection
*
* what's new in 7.037
* - Fixed bug in the comma-delimited CSV import function
*
* what's new in 7.038
* - Improved migration from CyberSyn (the full-text extractor path now changed automatically)

NickBaer 07-19-2018 04:56 AM

Do you have some examples of working sites?

I'm kind of full-up on Cams right now...

But, I have my own sites, and I am an Affiliate of dozens of sites to promote.

I'd have to check to see if they have (what kind of) feeds. And, perhaps, I need to have feeds regarding my own sites with content created by me.

just a punk 07-19-2018 05:18 AM

O don't work with adult and nave no webcam sites online, but you can see their screenshots from my localhost test site: https://gfy.com/fucking-around-and-p...wordpress.html

Actually with CyberSEO you can make a webcam hubs just with ease - it literally takes a couple of mouse clicks. The same applies to tubes, hosted galleries (TGP's) etc.

NickBaer 07-19-2018 05:41 AM

I like the idea, but I would need setup assistance.

I maintain a couple-dozen sites, and just added serious Cam WLs and Tubes... so I 1) am all for automation and 2) looking for enough install and setup assist that I can learn from example after that.

just a punk 07-19-2018 05:45 AM

Quote:

Originally Posted by NickBaer (Post 22307706)
I like the idea, but I would need setup assistance.

I maintain a couple-dozen sites, and just added serious Cam WLs and Tubes... so I 1) am all for automation and 2) looking for enough install and setup assist that I can learn from example after that.

Course I will provide the assistance but almost all the settings you need are available as ready to use presets.

NickBaer 07-19-2018 05:50 AM

Is this a stand-alone product, that makes its own webpage/pages... or does it require a WP and Theme installed first?

(Which is all OK, I just need to know the structure.)

I have the Domain, I would need a few minutes to create the subdomain. Then register it with Google when ready!

NickBaer 07-19-2018 06:25 AM

Subdomain created, waiting on directions.

just a punk 07-19-2018 06:28 AM

Quote:

Originally Posted by NickBaer (Post 22307711)
Is this a stand-alone product, that makes its own webpage/pages... or does it require a WP and Theme installed first?

(Which is all OK, I just need to know the structure.)

I have the Domain, I would need a few minutes to create the subdomain. Then register it with Google when ready!

It's a WordPress plugin which doesn't work alone. On the other hand, ever 1 or 4 site in the Internet works on WordPress, so it's a serious advantage for every site because there are thousands of thousands of plugins and templates (themes) that you can use our of the box for free.

For example, there are many plugins webcam and tube for WordPress that come with their own personal templates. With CyberSEO you can use all those templates or any other (one of many thousands) by your choice.

just a punk 07-19-2018 06:29 AM

Quote:

Originally Posted by NickBaer (Post 22307721)
Subdomain created, waiting on directions.

Did you buy the plugin already?

Goethe 07-19-2018 06:38 AM

Looks good, will pick up a copy soon

NickBaer 07-19-2018 06:42 AM

Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?

NickBaer 07-19-2018 06:52 AM

Which is your native currency?

NickBaer 07-19-2018 07:00 AM

Just purchased it.

2Checkout is a real pain, but got it to go. Since I pay with PayPal, the first set of data gathering was unnecessary. And just because I am traveling in Prague, was no reason to display currency to Czech Kr... making me go change to USD!

NickBaer 07-19-2018 07:19 AM

Waiting on the download email, hope you haven't quit for the day...!

Brian mike 07-19-2018 07:20 AM

Quote:

Originally Posted by NickBaer (Post 22307754)
Waiting on the download email, hope you haven't quit for the day...!

Should take few minutes, 2checkout always have a delays to approved the charge :thumbsup
His system seems to be all automated. Once you get the 2checkout email about charge approved you should be good to go.

NickBaer 07-19-2018 07:22 AM

Will you be helping me install, or one of your staff?

Will you help me with this, or will they: Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?

NickBaer 07-19-2018 07:25 AM

Since I have sites that are catalogs of my DVD, VOD, Book and eBook content, will there be instructions on how I can create my own .csv files of stuff for your package to include?

just a punk 07-19-2018 07:46 AM

Unfortunately it may take up to 24 hours for 2checkout to process your payment. I'm going to switch to PayPal form soon. Anyways your payment is safe (no single cent will go to nowhere).

Quote:

Originally Posted by NickBaer (Post 22307726)
Does it pick up feeds of new releases from AEBN, HotMovies, TLA, AdultEmpire?

It does peek feeds from anywhere. There is no any other WordPress plugin which is able to pull such a huge number of various feeds of any format.

NickBaer 07-19-2018 07:52 AM

:) What does 2co do, take a Uber from Ohio to PayPal in Omaha to pick up the cash??

I know my money is safe, but you got me hot to start this process yet today!

Nothing like a huge new opportunity in the middle of a Thursday afternoon!

NickBaer 07-19-2018 08:00 AM

Go for it! There is no reason to process with anyone other than PayPal.

just a punk 07-19-2018 08:49 AM

Quote:

Originally Posted by NickBaer (Post 22307739)
Just purchased it.

2Checkout is a real pain, but got it to go. Since I pay with PayPal, the first set of data gathering was unnecessary. And just because I am traveling in Prague, was no reason to display currency to Czech Kr... making me go change to USD!

I see. Unfortunately this could be a reason for a delay with 2checkout. Thus I will suggest you to contact them by phone/skype (it's toll free) and your payment will be processed within five minutes: +1 877 294 0273

NickBaer 07-19-2018 09:10 AM

email just arrived.

I downloaded it, but before I upload it to my Server, I need to know at what point you're going to help me with the install... so I don't go too far on my own, and slow things down.

It is sitting on my computer, .zip .

just a punk 07-19-2018 09:22 AM

Quote:

Originally Posted by NickBaer (Post 22307810)
email just arrived.

I downloaded it, but before I upload it to my Server, I need to know at what point you're going to help me with the install... so I don't go too far on my own, and slow things down.

It is sitting on my computer, .zip .

You need to install WordPress first. After that just unzip CyberSEO and upload it into your /wp-content/plugins/ directory and activate it. I can help you to setup webcam or tube feeds, but I will need an access to your WordPress admin control panel. Email it (login/password) to me at cyberseo@cyberseo.net

NickBaer 07-19-2018 09:55 AM

email sent...

In the meantime, i'm so excited:

https://www.youtube.com/watch?v=8iwBM_YB1sE

NickBaer 07-19-2018 12:54 PM

what time is it now?

just a punk 07-19-2018 07:27 PM

5:27 am here and I've just woke up. I've got your emails and need some time to sort em out.

BTW just added a random cam feed as a demo: https://porno-mall.com/PMHotSites/wp - it's random because I don't know your webmaster ID at chaturbate or any other camsite to set up the proper feed.

just a punk 07-19-2018 09:52 PM

BTW, you can see livecam shows from different affiliate programs using WP tags like this:

LiveJasmin – Porno-Mall Hot Sites
Camsoda – Porno-Mall Hot Sites
BongaCams – Porno-Mall Hot Sites
Chaturbate – Porno-Mall Hot Sites

All cam shows at the same site. You can change the theme (template), add more cam programs, change the post layouts, translate them to over 100 languages, spin them and do everything you want - with CyberSEO you are not limited in any way.

But once again: it's just an example, because I don't know your actual webmaster ID in these cam programs.

NickBaer 07-20-2018 02:43 AM

Thanks. it will be good to know the Times when you work.

Next, I want to do feeds that are not Live Cam sites.

Which is the correct Documentation file, to work through all of these possibilities?

just a punk 07-20-2018 02:50 AM

Quote:

Originally Posted by NickBaer (Post 22308238)
Thanks. it will be good to know the Times when you work.

Next, I want to do feeds that are not Live Cam sites.

Which is the correct Documentation file, to work through all of these possibilities?

The documentation can be found here: CyberSEO 7 – CyberSEO

Also lots of info is available at the official support forum: Support Forums – CyberSEO

NickBaer 07-20-2018 03:06 AM

You are wonderful!


All times are GMT -7. The time now is 02:23 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc