YouTube/DWPS/source

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Retrieved 2014-08-13 from here. <perl>

  1. !/usr/bin/perl -T

use strict; use warnings;

    1. Calomel.org ,:, Download Youtube videos and music using wget
    2. Script Name : youtube_wget_video.pl
    3. Version : 0.42
    4. Valid from : March 2014
    5. URL Page : https://calomel.org/youtube_wget.html
    6. OS Support : Linux, Mac OSX, OpenBSD, FreeBSD or any system with perl
  1. `:`
    1. Two arguments
    2. $1 Youtube URL from the browser
    3. $2 prefix to the file name of the video (optional)
                        1. options ##########################################
  1. Option: what file type do you want to download? The string is used to search
  2. in the youtube URL so you can choose mp4, webm, avi or flv. mp4 seems to
  3. work on the most players like android, ipod, ipad, iphones, vlc and mplayer.

my $fileType = "mp4";

  1. Option: what visual resolution or quality do you want to download? List
  2. multiple values just in case the highest quality video is not available, the
  3. script will look for the next resolution. You can choose "highres" for 4k,
  4. "hd1080" for 1080p, "hd720" for 720p, "itag=18" which means standard
  5. definition 640x380 and "itag=17" which is mobile resolution 144p (176x144).
  6. The script will always prefer to download the highest resolution video format
  7. from the list if available.

my $resolution = "hd720,itag=18";

  1. Option: How many times should the script retry the download if wget fails for
  2. any reason? Do not make this too high as a reoccurring error will just hit
  3. youtube over and over again.

my $retryTimes = 20;

  1. Option: do you want the resolution of the video in the file name? zero(0) is
  2. no and one(1) is yes. This option simply puts "_hd1080.mp4" or similar at the
  3. end of the file name.

my $resolutionFilename = 0;

  1. Option: Force all communication with YouTube to use SSL (https) links. The
  2. script will simply convert all URL's you pass to the script to use https
  3. instead of http. Encryption better protects your privacy and may help avoid
  4. ISP rate limiting.

my $forceSSL = 1;

  1. Option: turn on DEBUG mode. Use this to reverse engineering this code if you are
  2. making changes or you are building your own youtube download script.

my $DEBUG=0;

  1. initialize retry loop and resolution variables

$ENV{PATH} = "/bin:/usr/bin:/usr/local/bin:/opt/local/bin"; my $prefix = ""; my $retry = 1; my $retryCounter = 0; my $resFile = "unknown"; my $user_url = ""; my $user_prefix = "";

  1. collect the URL from the command line argument

chomp($user_url = $ARGV[0]); my $url = "$1" if ($user_url =~ m/^([a-zA-Z0-9\_\-\&\?\=\:\.\/]+)$/ or die "\nError: Illegal characters in YouTube URL\n\n" );

  1. declare the user defined file name prefix if specified

if (defined($ARGV[1])) {

  chomp($user_prefix = $ARGV[1]);
  $prefix = "$1" if ($user_prefix =~ m/^([a-zA-Z0-9\_\-\.\ ]+)$/ or die "\nError: Illegal characters in filename prefix\n\n" );

}

  1. while loop to retry downloading the video if the script fails for any reason

while ( $retry != 0 && $retryCounter < $retryTimes ) {

  1. Force SSL (https) download of the html page

$url =~ s/http:\/\//https:\/\//gi if ($forceSSL == 1);

  1. download the html from the youtube page containing the page title and video
  2. url. The page title will be used for the local video file name and the url
  3. will be sanitized and passed to wget for the download.

my $html = `wget -4Ncq --convert-links=off --no-cookies --timeout=90 --user-agent= --no-check-certificate "$url" -O-` or die "\nThere was a problem downloading the HTML page.\n\n";

  1. format the title of the page to use as the file name

my ($title) = $html =~ m/<title>(.+)<\/title>/si; $title =~ s/[^\w\d]+/_/g or die "\nError: we could not find the title of the HTML page. Check the URL.\n\n"; $title =~ s/_youtube//ig; $title =~ s/^_//ig; $title = lc ($title); $title =~ s/_amp//ig;

  1. filter the URL of the video from the HTML page

my ($download) = $html =~ /"url_encoded_fmt_stream_map"(.*)/ig;

  1. Print all of the separated strings in the HTML page
  2. print "\n$download\n\n" if ($DEBUG == 1);
  1. This is where we look through the HTML code and select the file type and
  2. video quality.

my @urls = split(',', $download); OUTERLOOP: foreach my $val (@urls) {

  1. print "\n$val\n\n";
   if ( $val =~ /$fileType/ ) {
      my @res = split(',', $resolution);
      foreach my $ress (@res) {
        if ( $val =~ /$ress/ ) {
        print "\n  html to url seperation complete.\n\n" if ($DEBUG == 1);
        print "$val\n" if ($DEBUG == 1);
        $resFile = $ress;
        $resFile = "sd640" if ( $ress =~ /itag=18/ );
        $resFile = "mobil176" if ( $ress =~ /itag=17/ );
        $download = $val;
        last OUTERLOOP;
        }
      }
   }

}

  1. clean up the url by translating unicode and removing unwanted strings

print "\n Re-formatting url for wget...\n\n" if ($DEBUG == 1); $download =~ s/\:\ \"//; $download =~ s/%3A/:/g; $download =~ s/%2F/\//g; $download =~ s/%3F/\?/g; $download =~ s/%3D/\=/g; $download =~ s/%252C/%2C/g; $download =~ s/%26/\&/g; $download =~ s/sig=/signature=/g; $download =~ s/\\u0026/\&/g; $download =~ s/(type=[^&]+)//g; $download =~ s/(fallback_host=[^&]+)//g; $download =~ s/(quality=[^&]+)//g;

  1. clean up the url

my ($youtubeurl) = $download =~ /(http?:.+)/;

  1. url title additon

my ($titleurl) = $html =~ m/<title>(.+)<\/title>/si; $titleurl =~ s/ - YouTube//ig; $titleurl =~ s/ /%20/ig;

  1. combine the youtube url and title string

$download = "$youtubeurl\&title=$titleurl";

  1. a bit more cleanup as youtube
  2. $download =~ s/&+/&/g;
  3. $download =~ s/&itag=\d+&signature=/&signature=/g;
  1. combine file variables into the full file name

my $filename = "unknown"; if ( $resolutionFilename == 1 ) {

  $filename = "$prefix$title\_$resFile.$fileType";
 } else {
  $filename = "$prefix$title.$fileType";

}

  1. Process check: Are we currently downloading this exact same video? Two of the
  2. same wget processes will overwrite themselves and corrupt the video.

my $running = `ps auwww | grep [w]get | grep -c "$filename"`; print "\n Is the same file already being downloaded? $running\n" if ($DEBUG == 1); if ($running >= 1)

 {
  print "\n  Already $running process, exiting." if ($DEBUG == 1);
  exit 0;
 };
  1. Force SSL (https) download of the video file.

$download =~ s/http:\/\//https:\/\//g if ($forceSSL == 1);

  1. Print the long, sanitized youtube url for testing and debugging

print "\n The following url will be passed to wget:\n\n" if ($DEBUG == 1); print "\n$download\n" if ($DEBUG == 1);

  1. print the file name of the video being downloaded for the user

print "\n Download: $filename\n\n" if ($retryCounter < 1);

  1. Background the script before wget starts downloading. Use "ps" if you need to
  2. look for the process running or use "ls -al" to look at the file size and
  3. date.

fork and exit;

  1. Download the video

system("wget", "-4Ncq", "--convert-links=off", "--no-cookies", "--timeout=90", "--no-check-certificate", "--user-agent=" , "$download", "-O", "$filename");

  1. Print the error code of wget

print "\n wget error code: $?\n" if ($DEBUG == 1);

  1. Exit Status: Check if the file exists and we received the correct error code
  2. from wget system call. If the download experienced any problems the script
  3. will run again and try continue the download until the retryTimes count limit
  4. is reached.

if( $? == 0 && -e "$filename" && ! -z "$filename" )

  {
     print "\n  Finished: $filename\n\n" if ($DEBUG == 1);
   # print "\n  Success: $filename\n\n";
     $retry = 0;
  }
else
  {
     print STDERR "\n  FAILED: $filename\n\n" if ($DEBUG == 1);
   # print "\n  FAILED: $filename\n\n";
     $retry = 1;
     $retryCounter++;
   # sleep $retryCounter;
     sleep 1;
  }

}

        1. EOF #####

</perl>