summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-28 12:54:39 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-28 12:54:39 +0100
commit03df7baa6a8dc5cab41f5ce2f0be8cd439a6195d (patch)
tree3fa89f7ae04e748bfb6b32740e03bb1c34558870
parent3511266bc39976a926a9f33a0762aa40212431ee (diff)
downloadyoutube-dl-03df7baa6a8dc5cab41f5ce2f0be8cd439a6195d.tar.gz
youtube-dl-03df7baa6a8dc5cab41f5ce2f0be8cd439a6195d.tar.xz
youtube-dl-03df7baa6a8dc5cab41f5ce2f0be8cd439a6195d.zip
Start documentation on how to embed youtube-dl
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index d62546433..230c12a88 100644
--- a/README.md
+++ b/README.md
@@ -511,6 +511,20 @@ 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.
+
 # BUGS
 
 Bugs and suggestions should be reported at: <https://github.com/rg3/youtube-dl/issues> . Unless you were prompted so or there is another pertinent reason (e.g. GitHub fails to accept the bug report), please do not send bug reports via personal email.