Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Thread: Web 2.0 Video Application Mass Add Video to VShare

  1. #1
    Join Date
    May 2008
    Posts
    10

    Default Web 2.0 Video Application Mass Add Video to VShare

    Brand New Web 2.0 Application Will Change Your Video Site Forever

    Video Swiper is a revolutionary new tool that will quickly and easily allow you to add content to your media sites and is 100% compatible with your Vshare script.

    Lets face it, the hardest thing about running a video site is adding fresh new content everyday. It is just way to time consuming. First you have to find a good site then search for videos. Then when you find a good one you have to download it to your desktop and then upload it to your site and enter title, description and tags. Just to do one video can easily take ten to fifteen minutes.

    Well, with Video Swiper, all that tedious work is a thing of the past...

    Here is what Video Swiper does. Just login to your Video Swiper account, enter a keyword into the search tool ...and simultaneously search 30 different video sites for content. You can view the content right from your Video Swiper account and add as many videos or games to your Video Swiper account as you like. Then one at a time or mass edit your titles, descriptions and tags and with the push of a button upload all this fresh new content right to your site. You could easily add thousands of content rich videos to your site every single day in a fraction of the time it would normally take you.

    More content means more traffic. It's that simple really. The more content you have the more pages you get indexed in the search engines. The more pages indexed the more traffic you receive. And what does more traffic mean? More Money Of Course!

    Video Swiper + Content = Money!

    Interested in seeing more? Want to be part of the pre-launch phase?

    You better act fast...Video Swiper is currently inviting a limited number of individuals to get in on the pre-launch phase. Don't waste any time, go and reserve your spot today before they close the doors and you're to late: http://prelaunch.videoswiper.com
    Mass Embedding & Server to Server Video Application
    http://www.videoswiper.com
    Vshare iPhone SmartPhone Application
    http://www.route66solutions.com/view...or-VShare.html

  2. #2

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    This only embeds the videos, or actually puts them onto my server?
    This member is now known as Sitting Out

  3. #3

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    Embeds

  4. #4

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    Thank you, flexserve.

    I'm always leary of embedding. I know a lot of people prefer it though, since it doesn't use their bandwidth. I just always tend to imagine the nightmare scenario of having a lot of embedding videos at a site that switches up their format, or worse, goes out of business entirely.

    Still, it seems like a good concept. I just wish I could get it to upload directly onto my server so that I know the video will be around as long as I am.
    This member is now known as Sitting Out

  5. #5

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    I signed up for beta to check it out. I'll report back when I have 100% of story.

  6. #6
    Join Date
    May 2007
    Posts
    394

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    Quote Originally Posted by videoswiper
    You better act fast...Video Swiper is currently inviting a limited number of individuals to get in on the pre-launch phase. Don't waste any time, go and reserve your spot today before they close the doors and you're to late: http://prelaunch.videoswiper.com
    I just signed up for the "beta" and all that does is add your email to their mailing list. My guess from this "you better act fast" sales hyperbole is that most likely all that this has done is given them a way to spam me later with some bullshit product that doesn't do dick squat.

  7. #7
    Join Date
    May 2007
    Posts
    394

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    Quote Originally Posted by SportsGamingTV.com
    This only embeds the videos, or actually puts them onto my server?
    According to the one-post this guy has made here, "with the push of a button upload all this fresh new content right to your site."

    These one-post-wonders are usually harping worthless bullshit. My guess is that's the case with this thing, or there would be something more than a "thanks for giving us your email address, we'll be in touch" on their website.

  8. #8

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    There are several sites running this type of interface where you select the "categories" you want and they just parse all the embeds in. You have no control over which videos atually get added since you select entire categories.

    Here is an example of "how" this is done (this is for pornhub for all you pervs LOL) j/k

    Code:
    <html><head>
    
     <title></title>
      <link rel="stylesheet" type="text/css"  href="style.css" />
    <?
    include ("../includes/yourdbconfigfile.php");
    
    if(isset($_GET['search'])){
    
    $search=$_GET['search'];
    $search=str_replace(" ", "+",$search);
    
         if(isset($_GET['page'])){
          $param="action=webmasters%2Fembedded_videos_search&categories=0&duration=0&order_by=most_recent&search_keyword=$search&go=Go&page=$_GET[page]#";
         }else{
         $param="action=webmasters%2Fembedded_videos_search&categories=0&duration=0&order_by=most_recent&search_keyword=$search&go=Go";
         }
       //http://www.pornhub.com/main.php?action=webmasters/embedded_videos_search&categories=0&duration=0&order_by=most_recent&search_keyword=&go=Go&page=3#
     //http://www.pornhub.com/main.php?action=webmasters/embedded_videos_search&categories=0&duration=0&order_by=most_recent&search_keyword=teen&go=Go&page=2#
    $url="http://www.pornhub.com/main.php?$param";
    //http://www.pornhub.com/main.php?action=webmasters%2Fembedded_videos_search&categories=0&duration=0&order_by=most_recent&search_keyword=teen&go=Go
    // echo $url;
    }else{
    $url="http://www.pornhub.com/main.php?action=webmasters/embedded_videos_search";
     //$search="sexy";
    }
    
    
    $handle = @fopen($url, "r");
    if ($handle) {
        while (!feof($handle)) {
            $buffer = fgets($handle, 4096);
    
            $f=$f.$buffer;
        }
        fclose($handle);
    }
     //echo $f;
    
    
    preg_match_all("/vkey.{2,35}>/",$f, $vids, PREG_PATTERN_ORDER);
    //echo "\n".$vids[0][0] . "
     \n";
    
    
    preg_match_all("/recent_image.{2,30}\"/",$f, $thumbs, PREG_PATTERN_ORDER);
    
    preg_match_all("/jpg.{2,130}120\"/",$f, $titles, PREG_PATTERN_ORDER);
    // echo $thumbs[0][0]. "
    ";
    //echo $titles[0][0] . "
    , ";
    
    /*
    vkey=401c33bfe808784842ef">
    recent_image id="thumb_100192"
    jpg" alt="Innocent Slow Handjob!" width="160" height="120"
    */
          //  class=t width=160 height=120 src='http://thumbs.redtube.com/_thumbs/0000011/0011194/0011194_006.jpg' onmouseout
    
    //   http://www.pornhub.com/video/000/100...umbs/small.jpg
    
     echo "<table id='leftp' cellspacing='20'>";
     echo "<tr><td align='center'  colspan=2><form action='pornhub.php' method='get'><input type='text' name='search'><input type='submit' value='Search'></form></td></tr>";
    for ($i = 0; $i <= 19; $i++) {
    //echo  "\n".$thumbs[0][$i]."
    ";
    
             if($vids[0][$i]==""){
             break;
            }
    
    
            $de=$i*2;
           $vid=str_replace("vkey=", "",$vids[0][$de] );
           $vid=str_replace("\">", "",$vid );
             //echo $vid."
    ";
           $tit=str_replace("jpg\" alt=\"", "",$titles[0][$i] );
           $tit=str_replace("\" width=\"160\" height=\"120\"", "",$tit );
    
           $thumbq=str_replace("recent_image id=\"thumb_", "",$thumbs[0][$i] );
           $thumbq=str_replace("\"", "",$thumbq );
           
           if(strlen($thumbq)==5){
              $thumbq="0".$thumbq;
           }
           
            $thumbq1=substr($thumbq, 0, 3);
            $thumbq2=substr($thumbq, 3, 3);
    
            $fthumb="http://www.pornhub.com/video/000/".$thumbq1."/".$thumbq2."/thumbs/small.jpg";
    
            $ts=$thumbq.".jpg";
           
           $queryp=mysql_query("Select * from videos where thumb='$ts'  ");
           $rowpnum=mysql_num_rows($queryp);
           echo mysql_error();
    
           if($rowpnum==0){
                        $par=$par+1;
                    // if($par==2){
                     $par=0;
                       $esvi0=$vid;
                       $esti0=$tit;
                       $esth0=$fthumb;
    
    
    echo "<tr><td align='center' colspan=2>$esti0
    [img]$esth0[/img]</td></tr>\n";
    
                //}//end if par
                }//end if
    }
    
    
    if($_GET['page']>0){
    $prev=$_GET['page']-1;
    $next=$_GET['page']+1;
     echo "<tr><td  align='center'>Prev</td><td  align='center'> Next</td></tr>";
    
    }else{
       echo "<tr><td colspan=2> Next</td></tr>";
    
    }
    
    echo "</table>";
    
    ?>
    </body>
    </html>

  9. #9
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    So, what's so different from that and the niche video script? And what if, like someone said, the video site that it's embedded from like studio6,(or whoever they were I forget now) closed their doors...that would so blow.
    If it's not fun, stop doing it!

  10. #10
    Join Date
    May 2007
    Posts
    394

    Default Re: Web 2.0 Video Application Mass Add Video to VShare

    In my opinion, when you read something like this, take a look and see how many posts the person has made. If the answer is "1" then you can be pretty sure that what's being posted is CRAP GARBAGE, like this one. The purpose of this scumbag's post was evidently to build up his email spam list.

Page 1 of 3 123 LastLast

Similar Threads

  1. Facebook application
    By hollyjenson in forum Template Modifications
    Replies: 4
    Last Post: 09-20-2010, 06:06 PM
  2. Mass FLV Video Transfer Module 100 Million Videos
    By videoswiper in forum Feature Requests
    Replies: 4
    Last Post: 12-17-2008, 02:19 AM
  3. Mass FLV Video Transfer Module 100 Million Videos
    By videoswiper in forum General Discussions
    Replies: 0
    Last Post: 12-01-2008, 02:07 AM
  4. Mass video file name change
    By RAMMSTEIN in forum Feature Requests
    Replies: 0
    Last Post: 05-26-2008, 09:13 AM
  5. Special application
    By jebcom in forum Sales Questions
    Replies: 3
    Last Post: 06-04-2007, 09:28 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •