summaryrefslogtreecommitdiff
path: root/doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn')
-rw-r--r--doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn22
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn b/doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn
deleted file mode 100644
index 229dc258b..000000000
--- a/doc/todo/wishlist:_special-case_handling_of_Youtube_URLs_in_Web_special_remote.mdwn
+++ /dev/null
@@ -1,22 +0,0 @@
-The [[Web special remote|special remotes/web]] could possibly be improved by detecting when URLs reference a Youtube video page and using [youtube-dl](http://rg3.github.com/youtube-dl/) instead of wget to download the page. Youtube-dl can also handle several other video sites such as vimeo.com and blip.tv, so if this idea were to be implemented, it might make sense to borrow the regular expressions that youtube-dl uses to identify video URLs. A quick grep through the youtube-dl source for the identifier _VALID_URL should find those regexes (in Python's regex format).
-
-> This is something I've thought about doing for a while..
-> Two things I have not figured out:
->
-> * Seems that this should really be user-configurable or a plugin system,
-> to handle more than just this one case.
-> * Youtube-dl breaks from time to time, I really trust these urls a lot
-> less than regular urls. Perhaps per-url trust levels are called for by
-> this.
->
-> --[[Joey]]
-
-> > There's a library for this called [quvi](http://quvi.sourceforge.net/) which supports many
-> > different sites and also allows fetching the URL (as opposed to just
-> > downloading the file). It seems to me this would be the best tool
-> > for this task. One problem to consider here is that a single youtube
-> > URL may yield different file contents depending on the quality
-> > chosen. Also, it seems that the URLs guessed by quvi may be
-> > ephemeral. --[[anarcat]]
-
-> [[done]]!!! --[[Joey]]