View Single Post
  #1  
Old 02-02-2010, 12:16 AM
any ANONYMOUS forum user any ANONYMOUS forum user is offline
any user of the forum who preferred to post anonymously
 
Join Date: Aug 2011
Location: Server of stream-recorder.com
Posts: 211
any ANONYMOUS forum user is on a distinguished road
Default

Downloading YouTube videos with JavaScript


I used the following javascript for downloading youtube videos:

Code:
javascript:window.open('http://youtube.com/get_video?video_id='+window.location.href.split('?')[1].match(/v=([^(&|$)]*)/)[1]+'&t='+document.getElementById('movie_player').src.match(/t=([^(&|$)]*)/)[1]);
It worked like a charm, but for whatever reason I can't use it any longer. Is there any update to this script? Or is it my browser to blame
Reply With Quote