Allow alternate fields in outtmpl

Closes #899, #1004
This commit is contained in:
pukkandan 2021-09-18 16:21:38 +05:30
parent d47f46e17e
commit 7c37ff97d3
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
3 changed files with 20 additions and 8 deletions

View file

@ -790,6 +790,12 @@ class TestYoutubeDL(unittest.TestCase):
test('%(formats.0.id.-1+id)f', '1235.000000')
test('%(formats.0.id.-1+formats.1.id.-1)d', '3')
# Alternates
test('%(title,id)s', '1234')
test('%(width-100,height+20|def)d', '1100')
test('%(width-100,height+width|def)s', 'def')
test('%(timestamp-x>%H\\,%M\\,%S,timestamp>%H\\,%M\\,%S)s', '12,00,00')
# Laziness
def gen():
yield from range(5)