Results 1 to 17 of 17

Thread: [serious]Download and save youtube videos.

  1. #1

    Thread Starter
    Frenzied Member mar_zim's Avatar
    Join Date
    Feb 2004
    Location
    Toledo Cebu City.
    Posts
    1,416

    Talking [serious]Download and save youtube videos.

    Guys have you tried downloading videos in youtube.com? Any tips on how to download there videos?



    Thanks in advance guys.

  2. #2
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    Re: [serious]Download and save youtube videos.

    It's not possible.

    If you really want to know why, continue reading...:
    -Pull up the source of the page(you may need to do this on firefox... for some reason it didn't do anything when i hit view source in IE).
    -Do a search for swf
    -You'll find something like this: "/player2.swf?video_id=3zQSWOTS3Gw&l=202&t=OEgsToPDskI3MtktwLddmyHbg9dYNxmp"
    -Copy that string and paste it after http://youtube.com which creates http://youtube.com/player2.swf?video...ddmyHbg9dYNxmp
    -If you navigate to this address it should bring up a fullscreen version of your video.
    -To download files such as SWFs, MOVs, WMVs, etc, the easiest way I have found is to create an html file like the following:
    Code:
    <html>
    <a href="http://youtube.com/player2.swf?video_id=3zQSWOTS3Gw&l=202&t=OEgsToPDskI3MtktwLddmyHbg9dYNxmp">a</a>
    </html>
    Then I just open the page up, right click on the link, and select save target as...
    The problem with this situation is that the swf file is simply player2.swf. All it will download is the player itself which if run by itsself will just display the text "Loading..." The only way to get it to play a specific video is to pass it the parameter like video_id=3zQSWOTS3Gw&l=202&t=OEgsToPDskI3MtktwLddmyHbg9dYNxmp
    This will of course download the video each time you do this and thus can't be done offline.
    My monkey wearing the fedora points and laughs at you.

  3. #3

    Thread Starter
    Frenzied Member mar_zim's Avatar
    Join Date
    Feb 2004
    Location
    Toledo Cebu City.
    Posts
    1,416

    Re: [serious]Download and save youtube videos.

    Thanks for the input AR.

    I tried what you've said and yeah it will just display the Loading... text it will not play the video I try to change the player2.swf to "watch?" but they redirect me to another page..damn.. I do a little search I found out that before they have a page called get_video.php there you could download the video by supplying a parameter in video_id variable but now it seems they do some updates to restrict there videos.
    I hope there would be another way in doing this.

  4. #4
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    Re: [serious]Download and save youtube videos.

    There probably is some way to get the video... but its not going to happen without making some strange program and spending a lot of time figuring out how to get it to work.
    My monkey wearing the fedora points and laughs at you.

  5. #5
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    Quote Originally Posted by Arrow_Raider
    There probably is some way to get the video... but its not going to happen without making some strange program and spending a lot of time figuring out how to get it to work.
    I think im the person to do it lol. Im going to try decompiling the player2.swf file and see what i find. Ill take it from there lol.

  6. #6
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    lol looking at code you've never seen before (with no comments ) in a language you've never seen before is a little more difficult than i first thought. But, its quite easy to understand, im just trying to piece things together.

  7. #7
    Lively Member Wally Pipp's Avatar
    Join Date
    Jan 2002
    Location
    Carnivàle
    Posts
    79

    Re: [serious]Download and save youtube videos.

    the quintessential description of coding: trying to piece things together.
    A post brought to you by the Grim Reaper Appreciation Society™

    "Buy your lifetime subscription now and save on your coffin"

  8. #8
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    lol this isnt looking to be very easy lol. But i will get it. Oh yes

  9. #9
    Hyperactive Member vbcode1980's Avatar
    Join Date
    Nov 2005
    Location
    Anywhere the wind blows
    Posts
    365

    Re: [serious]Download and save youtube videos.

    Isn't it possible the files are lifted from a database or something?
    I code C#....

  10. #10
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    They have to come from somewhere, and thats what i was looking for, but, they use very trivial variables names, there no commenting and i know next to nothing of flash.

    If anyone wants to look at the code then PM me.

  11. #11
    Fanatic Member demotivater's Avatar
    Join Date
    Jun 2002
    Location
    is everything
    Posts
    627

    Re: [serious]Download and save youtube videos.

    Another part of programming: Whatever you're trying to do has probably been done before.

    http://www.enriquepuertas.com/?p=22
    Here's to us!
    Who's like us?
    Darned few, and they're all dead!

  12. #12
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    I thought someone probably already figured it out

  13. #13
    Hyperactive Member Arrow_Raider's Avatar
    Join Date
    Dec 2001
    Location
    AVR Lovers Club
    Posts
    423

    Re: [serious]Download and save youtube videos.

    After poking around... this turns out to be quite easy.
    The video I used as an example is named 3zQSWOTS3G (its the video id parameter). Apparently, it just downloads 3zQSWOTS3G.flv and plays it in the player. If you go to your temporary internet files (or firefox's cache folder if you're using ff), you should find the video_id.flv like 3zQSWOTS3G.flv. Then all you need is a converter or player for the flv file.
    My monkey wearing the fedora points and laughs at you.

  14. #14
    Hyperactive Member francisstokes's Avatar
    Join Date
    May 2005
    Location
    Kent, England
    Posts
    272

    Re: [serious]Download and save youtube videos.

    Wow. nice one arrow raider

  15. #15
    Fanatic Member
    Join Date
    May 2005
    Posts
    898

    Re: [serious]Download and save youtube videos.

    There is a Fx extension for this btw.

    https://addons.mozilla.org/firefox/2390/

  16. #16
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: [serious]Download and save youtube videos.

    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  17. #17
    Hyperactive Member Juan Carlos Rey's Avatar
    Join Date
    Aug 1999
    Location
    Mendoza, Argentina
    Posts
    301

    Re: [serious]Download and save youtube videos.

    It's so easy...

    1- copy the title and paste it in http://video.google.com

    2- copy the address and paste it in www.videodownloader.net

    Sure there may be another dozen ways...
    Last edited by Juan Carlos Rey; Aug 12th, 2006 at 08:50 PM.
    Combat poverty: kill a poor!!

Posting Permissions

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



Click Here to Expand Forum to Full Width