about summary refs log tree commit diff
path: root/youtube_dl/postprocessor/metadatafromtitle.py
Commit message (Collapse)AuthorAgeFilesLines
* [postprocessor] Don't replace existing value with null metadata parsed from ↵dirkf2022-08-151-0/+2
| | | | title
* [postprocessor/metadatafromtitle] Fix missing optional meta fields (closes ↵Sergey M․2017-06-171-3/+6
| | | | #13408)
* [postprocessor/metadatafromtitle] Add support regex syntax for ↵Sergey M․2017-05-141-1/+3
| | | | --metadata-from-title (closes #13065)
* improve coding styleRemita Amine2017-04-121-1/+1
|
* Fix "invalid escape sequences" error on Python 3.6Yen Chi Hsuan2017-01-061-1/+1
|
* [metadatafromtitle] Remove unused exception classSergey M․2016-08-091-5/+0
|
* Make --metadata-from-title non fatalnyorain2016-08-091-1/+2
| | | | Output a warning if the metadata can't be parsed from the title (and don't write any metadata) instead of raising a critical error.
* [refactor] Single quotes consistencySergey M․2016-02-141-1/+1
|
* 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)