GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Anyone know a auto video posting script for youtube videos? (https://gfy.com/showthread.php?t=765716)

Ketchup 09-03-2007 07:20 PM

Anyone know a auto video posting script for youtube videos?
 
Something that will post youtube/google videos to a site kind of like this web2carz.com also maybe update with the latest videos and descriptions?

I would like if it would build multiple pages filled with videos on one subject say "cars" or "xbox" or whatever.

Thank you
:upsidedow

sortie 09-03-2007 08:41 PM

Quote:

Originally Posted by Ketchup (Post 13028468)
Something that will post youtube/google videos to a site kind of like this web2carz.com also maybe update with the latest videos and descriptions?

I would like if it would build multiple pages filled with videos on one subject say "cars" or "xbox" or whatever.

Thank you
:upsidedow

It's against youtube policy to "crawl" their site so I didn't put that in the script in my sig. But if you visit youtube yourself and copy the code you can use the "Load content" function in my script and do that.

I'm assuming you want to post to your own site in this scenario.

BOSS1 09-03-2007 08:50 PM

Quote:

Originally Posted by sortie (Post 13028670)
It's against youtube policy to "crawl" their site so I didn't put that in the script in my sig. But if you visit youtube yourself and copy the code you can use the "Load content" function in my script and do that.

I'm assuming you want to post to your own site in this scenario.

Can you describe how that works?

sortie 09-03-2007 09:17 PM

Quote:

Originally Posted by BOSS1 (Post 13028687)
Can you describe how that works?

Sure,

First some adult background:

my script will crawl FHG and other webpages and leech or either load video that is linked to a thumb. It auto crops the thumbs to the size you choose and auto-builds and auto-updates you website on a time frame you specify.
I also imports flash video from sponsors and does the same as above.

RE: YouTube

Because the script does not crawl youtube you would have to import the flash like I do for sponsors. But rather than go to the trouble to build a file etc... like the sponsors; you can import manually a list of videos with the
"load content" function. This does not load the flash onto you server but does a standard acceptable leech from youtube using their specified object code.

In other words, youtube pays the bandwidth and you pay nothing for showing the video.

This is acceptable to youtube as long as you are not trying to be a competitor to youtube.

SmokeyTheBear 09-03-2007 09:39 PM

google has a very easy tool for this ..

http://www.google.com/uds/solutions/.../videobar.html

sortie 09-03-2007 09:47 PM

Quote:

Originally Posted by SmokeyTheBear (Post 13028840)
google has a very easy tool for this ..

http://www.google.com/uds/solutions/.../videobar.html

Not bad if what I read is correct that you can "select" the vids.

I would use it.

Ketchup 09-03-2007 10:14 PM

Hey thanks smoky let me try that! :)

I found this a bit ago but don't know how to use it...I think its from youtube themselves

http://waxjelly.wordpress.com/2007/0...class-redeaux/

and

http://www.autovideoscript.com/ but you gotta pay for that.

SmokeyTheBear 09-03-2007 10:35 PM

Quote:

Originally Posted by sortie (Post 13028870)
Not bad if what I read is correct that you can "select" the vids.

I would use it.

yup . i wrote a simple simple php script so you can call it in an iframe

you can use this but theres an api key inside the script that needs to be tied to your google account so really you gotta create the code yourself to get you api id and paste it into the code


save the following as video.php
Code:


  <div id="videoBar-player">
    <span style="color:#676767;font-size:11px;margin:10px;padding:4px;">Loading...</span>
  </div>

  <div id="videoBar-bar">
    <span style="color:#676767;font-size:11px;margin:10px;padding:4px;">Loading...</span>
  </div>


  <script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-vbw&key=ABQIAAAAknCvFk8QZxxo8EHuv-xLwxTa1UwxoKEMhcPZA-Lftw1nKyY0phQrGaElC-XuEMdZrBowjIMxO4nIsg"
    type="text/javascript"></script>
  <style type="text/css">
    @import url("http://www.google.com/uds/css/gsearch.css");
  </style>

  <!-- Video Bar Code and Stylesheet -->
  <script type="text/javascript">
    window._uds_vbw_donotrepair = true;
  </script>
  <script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js?mode=new"
    type="text/javascript"></script>
  <style type="text/css">
    @import url("http://www.google.com/uds/solutions/videobar/gsvideobar.css");
  </style>

  <style type="text/css">
    #videoBar-player .playerInnerBox_gsvb .player_gsvb {
      width : 320px;
      height : 260px;
    }
  </style>
  <script type="text/javascript">
    function LoadVideoBar() {

    var videoBar;
    var options = {
        largeResultSet : !true,
        horizontal : true,
        autoExecuteList : {
          cycleTime : GSvideoBar.CYCLE_TIME_MEDIUM,
          cycleMode : GSvideoBar.CYCLE_MODE_RANDOM,
          executeList : ["<?php echo $kw; ?>"]
        }
      }

    videoBar = new GSvideoBar(document.getElementById("videoBar-bar"),
                              document.getElementById("videoBar-player"),
                              options);
    }
    // arrange for this function to be called during body.onload
    // event processing
    GSearch.setOnLoadCallback(LoadVideoBar);
  </script>

then simply call the page like video.php?kw=YOUR+KEYWORDS

SmokeyTheBear 09-03-2007 10:37 PM

if you add this you have a google video search engine

Code:

<form action=video.php>
<input type=text name=kw>
<input type=submit value=Search>
</form>


SmokeyTheBear 09-03-2007 10:38 PM

if you have troubles setting it up just drop your icq and i'll set it up for you

Bro Media - BANNED FOR LIFE 09-03-2007 10:54 PM

can use their rss feeds to automaticly insert certian information into a database which inreturn can embed all videos that are in that category on your site

Ketchup 09-03-2007 11:29 PM

Smokey :pimp that worked! :thumbsup Copied it and put it in with my key and the form field works nice ...very cool thanks!

Madrox how would I go about doing that? I would like to do what you said exactly

just like fill up the pages with the newest videos

I have to go to sleep but will play with this tomorrow.

Thanks guys :)


All times are GMT -7. The time now is 01:51 AM.

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