Skip to content

Commit

Permalink
Create ytdownloader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshkavhar committed Feb 1, 2019
0 parents commit 4bbd3aa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ytdownloader.py
@@ -0,0 +1,18 @@
# Script Created by Yash Ladha
# Requirements:
# youtube-dl
# aria2c
# 10 Feb 2017

import subprocess
import sys

video_link, threads = sys.argv[1], sys.argv[2]
subprocess.call([
"youtube-dl",
video_link,
"--external-downloader",
"aria2c",
"--external-downloader-args",
"-x"+threads
])

0 comments on commit 4bbd3aa

Please sign in to comment.