Advertisement
Guest User

YOUTUBE-DL URL TO MP4

a guest
Nov 11th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Do
  2. set wsite = createobject("wscript.shell")
  3. website = inputbox ("Paste URL into the field.","MP4")
  4.  
  5. If IsEmpty(website) Then
  6. WScript.Quit
  7.  
  8. ElseIf website = "" Then
  9. MsgBox "Please do not leave field blank."
  10.  
  11. Else
  12. wsite.run "cmd /c youtube-dl -i -f mp4 " & website & " -o VIDEOS/%(title)s.%(ext)s"
  13. End If
  14. Loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement