Results 1 to 4 of 4

Thread: Need a userscript to download videos from Vimeo

  1. #1
    Join Date
    May 2009
    Posts
    1,084

    Need a userscript to download videos from Vimeo

    As you all guys might knowing that videos from online viral video hosting and sharing sites such as YouTube, Vimeo and Google Video are not downloadable.So i need a userscript or any application to save the video locally for offline viewing or for transferring,synchronizing to portable media player. Any one have any suggestion for the same ?

  2. #2
    Join Date
    Apr 2008
    Posts
    2,276

    Re: Need a userscript to download videos from Vimeo

    Javimoya’s Video Downloader helps you to download online videos directly to your computer, right from the web page itself, without any installation, and works in all operating system and computer.Remember to add .flv extension to the downloaded file (.mov in iFilm). In order to visualize it, you will need to convert it to other format, or use an specific FLV files player.All you need to do is just select the video site’s tab, input the URL of the video (appears on the address bar of the web page where video will play on it) which you want to download into the text box, and then just follow the download instructions.Video Downloader supports a lot of video hosting sites like Vimeo, vSocial, Web62.com and ZippyVideos and much more.

  3. #3
    Join Date
    Oct 2005
    Posts
    2,358

    Re: Need a userscript to download videos from Vimeo

    Vimeo Userscript to download videos:

    // ==UserScript==
    // @name Download video from vimeo.com
    // @namespace userscripts.org
    // @description Adds a download link to the flv video underneath videos on vimeo.com & underneath any embeded vimeo videos.
    // @include *
    // ==/UserScript==

    (function(){

    function makeLink(linkSrc, emPar){

    var cNum = linkSrc.split('clip_id=')[1].split('&')[0];

    GM_xmlhttpRequest({
    method: 'GET',
    url: 'http://www.vimeo.com/moogaloop/load/clip:'+cNum+'/local?ver=4',
    headers: {
    'User-agent': 'Mozilla/4.0 (compatible)',
    },
    onload: function(responseDetails) {

    var data = responseDetails.responseText;

    var parser=new DOMParser();
    var xmlDoc=parser.parseFromString(data,"text/xml");
    var flvURL = xmlDoc.getElementsByTagName('file')[0].textContent;


    var newP = document.createElement('p');
    var newB = document.createElement('b');
    newB.innerHTML = 'Download : ';
    var newA = document.createElement('a');
    newA.innerHTML = flvURL;
    newA.href = flvURL;
    newP.appendChild(newB);
    newP.appendChild(newA);

    if(emPar.parentNode.nodeName == 'OBJECT'){

    emPar = emPar.parentNode;

    }
    var emSib = emPar.nextSibling;
    if(emSib){

    emPar.parentNode.insertBefore(newP, emSib);

    }
    else{

    emPar.parentNode.appendChild(newP);

    }

    }

    });


    }

    var getEmbeds = document.getElementsByTagName('embed');

    for(var i=0;i<getEmbeds.length;i++){

    var emPar = getEmbeds[i];
    var eS = emPar.src;

    if(eS.indexOf('http://www.vimeo.com/moogaloop.swf')>-1){

    makeLink(eS, emPar);

    }
    else if(eS.indexOf('http://www.vimeo.com/moogaloop_local.swf')>-1){

    makeLink(emPar.getAttribute('flashvars'), emPar);

    }

    }

    })();

  4. #4
    Join Date
    Feb 2009
    Posts
    673

    Re: Need a userscript to download videos from Vimeo

    Other places like Facebook, Twitter, and dental hygenist web sites can turn into real time sinks if you're not paying attention. If you need a little outside assistance in breaking free, get your hands on the NoAddict userscript for Greasemonkey. Adding domains is simple - just clicking in to Greasemonkey's manage scripts window modify the script's source using your favorite text editor. The code is straightforward: // @include https://website.toadd.com/*.

    Another similar service to enable video addicts to download and keep the videos is KeepVid.The video sharing sites that KeepVid able to process includes Angry Alien,Vimeo, vSocial, Web62.com, YouTube and ZippyVideos.

Similar Threads

  1. Replies: 7
    Last Post: 24-05-2013, 02:17 PM
  2. How to download facebook videos?
    By spiffy in forum Technology & Internet
    Replies: 3
    Last Post: 04-11-2010, 02:54 AM
  3. how to Download Orkut Videos on PC?
    By MADGE25 in forum Windows Software
    Replies: 4
    Last Post: 18-01-2010, 09:52 PM
  4. Download YouTube videos as MP4
    By KAMAL60 in forum Windows Software
    Replies: 5
    Last Post: 27-12-2009, 12:46 AM
  5. how can i download videos in any format from web
    By Xylina in forum Windows Software
    Replies: 2
    Last Post: 06-07-2009, 11:21 PM

Tags for this Thread

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
  •  
Page generated in 1,717,383,820.81644 seconds with 16 queries