aboutsummaryrefslogtreecommitdiff
path: root/doc/todo/Wishlist:_Import_youtube_playlists.mdwn
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawn7gQ1zZDdWhXy9H51W2krZYShNmKL3qfM <Karsten@web>2013-12-27 20:31:36 +0000
committerGravatar admin <admin@branchable.com>2013-12-27 20:31:36 +0000
commit464613977c19cb9517ace381b9c0c63232e34d1b (patch)
tree3c83814422f344229051c61207e8d5a8ed617134 /doc/todo/Wishlist:_Import_youtube_playlists.mdwn
parenta8a62e3f3df6730fc900e350c87352ab794f9159 (diff)
Diffstat (limited to 'doc/todo/Wishlist:_Import_youtube_playlists.mdwn')
-rw-r--r--doc/todo/Wishlist:_Import_youtube_playlists.mdwn28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/todo/Wishlist:_Import_youtube_playlists.mdwn b/doc/todo/Wishlist:_Import_youtube_playlists.mdwn
new file mode 100644
index 000000000..28612cd5b
--- /dev/null
+++ b/doc/todo/Wishlist:_Import_youtube_playlists.mdwn
@@ -0,0 +1,28 @@
+Hi,
+
+it would be great if the importfeed command would be able to read feeds generated by youtube (like for playlists). The youtube playlist feed contains links to separate youtube video pages, which quvi handles just fine. Currently I use the following python script:
+
+ #!/usr/bin/env python
+ import feedparser
+ import sys
+ d = feedparser.parse('http://gdata.youtube.com/feeds/api/playlists/%s' % sys.argv[1])
+ for entry in d.entries:
+ print entry.link
+
+and then
+
+ kasimon@pc:~/annex/YouTube/debconf13$ youtube-playlist-urls PLz8ZG1e9MPlzefklz1Gv79icjywTXycR- | xargs git annex addurl --fast
+ addurl Welcome_talk.webm ok
+ addurl Bits_from_the_DPL.webm ok
+ addurl Debian_Cosmology.webm ok
+ addurl Bits_from_the_DPL.webm ok
+ addurl Debian_Cosmology.webm ok
+ addurl Debian_on_Google_Compute_Engine.webm ok
+ ^C
+
+to create a backup of youtube media I'd like to keep.
+
+It would be great if this functionality could be integrated directly into git annex.
+
+Best
+Karsten