LAPINPT

Smart Downloader

Sep 28th, 2013
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.97 KB | None | 0 0
  1. @ECHO OFF
  2.  
  3. TITLE MOVIE DOWNLOADER by Lapinpt
  4.  
  5. move /Y wget.exe C:\Windows >NUL
  6. move /Y unzip.exe C:\Windows >NUL
  7.  
  8. :LOOP
  9.  
  10. echo.
  11.  
  12. set /p pswrd=PASSWORD?:
  13.  
  14. cls & echo. & timeout 2 >NUL
  15.  
  16. IF /I NOT [%pswrd%]==[SOMEPASS] GOTO BADPASS
  17.  
  18. IF NOT EXIST C:\Windows\aria2c.exe (
  19. wget -q https://mydisk.se/lapinpt/webpage/batch/tools/aria2c.zip
  20. unzip -q -o aria2c.zip -d C:\Windows
  21. del aria2c.zip
  22. )
  23.  
  24. echo ESCOLHE OS FILMES QUE QUERES. & echo. & timeout 3 >NUL
  25. echo para SIM, clica na letra  S  e  ENTER & echo. & timeout 4 >NUL
  26. echo para NAO, clica apenas em  ENTER & echo. & timeout 5 >NUL
  27.  
  28. echo Europa.Report.2013.BluRay.720p.x264
  29. set /p Europa=s ou n:
  30. echo.
  31. echo The.Purge.2013.720p.BluRay.x264
  32. set /p The.Purge=s ou n:
  33. echo.
  34. echo Only.God.Forgives.2013.BluRay.720p.x264
  35. set /p Only.God=s ou n:
  36. echo.
  37. echo After.Earth.2013.720p.BluRay.x264
  38. set /p After.Earth=s ou n:
  39. echo.
  40. echo The.Hangover.Part.III.2013.720p.BluRay.x264
  41. set /p Hangover=s ou n:
  42. echo.
  43. echo This.Is.the.End.2013.720p.BluRay.x264
  44. set /p This.Is=s ou n:
  45. echo.
  46. echo The.Croods.2013.720p.BDRiP.x264
  47. set /p The.Croods=s ou n:
  48. cls
  49.  
  50. if /I "%Europa%"=="s" (
  51. echo Downloading  Europa.Report.2013.BluRay.720p.x264 & echo.
  52. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/Europa.Report.2013.BluRay.720p.x264-CHD.mkv
  53. )
  54. if /I "%The.Purge%"=="s" (
  55. echo Downloading  The.Purge.2013.720p.BluRay.x264 & echo.
  56. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/The.Purge.2013.720p.BluRay.x264-WiKi.mkv
  57. )
  58. if /I "%Only.God%"=="s" (
  59. echo Downloading  Only.God.Forgives.2013.BluRay.720p.x264 & echo.
  60. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/Only.God.Forgives.2013.BluRay.720p.x264-CHD.mkv
  61. )
  62. if /I "%After.Earth%"=="s" (
  63. echo Downloading  After.Earth.2013.720p.BluRay.x264 & echo.
  64. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/After.Earth.2013.720p.BluRay.x264-WiKi.mkv
  65. )
  66. if /I "%Hangover%"=="s" (
  67. echo Downloading  The.Hangover.Part.III.2013.720p.BluRay.x264 & echo.
  68. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/The.Hangover.Part.III.2013.720p.BluRay.x264-HiDt.mkv
  69. )
  70. if /I "%This.Is%"=="s" (
  71. echo Downloading  This.Is.the.End.2013.720p.BluRay.x264 & echo.
  72. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/This.Is.the.End.2013.720p.BluRay.x264-HiDt.mkv
  73. )
  74. if /I "%The.Croods%"=="s" (
  75. echo Downloading  The.Croods.2013.720p.BDRiP.x264 & echo.
  76. aria2c --http-user=USER --http-passwd=PASSWORD -x4 --continue=true --file-allocation=falloc http://your.link.net/BRRIP/The.Croods.2013.720p.BDRiP.x264-nTHD/The.Croods.2013.720p.BDRiP.x264-nTHD.mp4
  77. )
  78.  
  79. GOTO EOF
  80.  
  81. :BADPASS
  82. echo ERRADO, TENTA OUTRA VEZ... & timeout 3 >NUL
  83. cls
  84. GOTO LOOP
  85.  
  86. :EOF
Add Comment
Please, Sign In to add comment