aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-12 16:47:22 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-12 16:47:22 +0100
commit13dcfd41bda5eaf40637d4054bec33cd804940b9 (patch)
tree4ac2f0eaac29d46c2de1a77bac5c1f5cddc340b4 /CONTRIBUTING.md
parente56190b378367291abe4677f2357fcfc213b1a6a (diff)
downloadyoutube-dl-13dcfd41bda5eaf40637d4054bec33cd804940b9.zip
youtube-dl-13dcfd41bda5eaf40637d4054bec33cd804940b9.tar.gz
youtube-dl-13dcfd41bda5eaf40637d4054bec33cd804940b9.tar.bz2
[CONTRIBUTING.md] Remove the section about embedding; that is not applicable for youtube-dl contributors
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 48840f8..0ff7b39 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -134,17 +134,3 @@ If you want to add support for a new site, you can follow this quick list (assum
In any case, thank you very much for your contributions!
-# EMBEDDING YOUTUBE-DL
-
-youtube-dl makes the best effort to be a good command-line program, and thus should be callable from any programming language. If you encounter any problems parsing its output, feel free to [create a report](https://github.com/rg3/youtube-dl/issues/new).
-
-From a Python program, you can embed youtube-dl in a more powerful fashion, like this:
-
- import youtube_dl
-
- ydl_opts = {}
- with youtube_dl.YoutubeDL(ydl_opts) as ydl:
- ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])
-
-Most likely, you'll want to use various options. For a list of what can be done, have a look at [youtube_dl/YoutubeDL.py](https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L69). For a start, if you want to intercept youtube-dl's output, set a `logger` object.
-