-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First YouTube Downloader from command line
- Loading branch information
1 parent
c68ee0c
commit 436e7b0
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+5.97 MB
Aahatein - Agnee (splitsvilla 4 theme song) Best audio quality-n06H7OcPd-g.mp4
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from __future__ import unicode_literals | ||
import youtube_dl | ||
import urllib | ||
import shutil | ||
ydl_opts = {} | ||
with youtube_dl.YoutubeDL(ydl_opts) as ydl: | ||
ydl.download(['https://www.youtube.com/watch?v=n06H7OcPd-g']) |