aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/postprocessor/metadatafromtitle.py
Commit message (Collapse)AuthorAgeFilesLines
* Postprocessors: use a list for the files that can be deletedJaime Marquínez Ferrándiz2015-04-181-1/+1
| | | | We could only know if we had to delete the original file, but this system allows to specify us more files (like subtitles).
* [metadatafromtitle] Some improvements and cleanupJaime Marquínez Ferrándiz2015-03-141-5/+4
| | | | | | | | * Remove the 'songtitle' field, 'title' can be used instead. * Remove newlines in the help text, for consistency with other options. * Add 'from __future__ import unicode_literals'. * Call '__init__' from the parent class. * Add test for the format_to_regex method
* Add metadata from title parserphiresky2015-03-141-0/+48
(Closes #5125)