From 2b88d01a01abc761f03ddb5ec8d30f569bd71e63 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Wed, 12 Aug 2020 02:25:01 -0500 Subject: [PATCH] Add webvtt mime type ( subtitles, captions ) --- lbry/schema/mime_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lbry/schema/mime_types.py b/lbry/schema/mime_types.py index 06c5be6b9..32fa8c047 100644 --- a/lbry/schema/mime_types.py +++ b/lbry/schema/mime_types.py @@ -123,6 +123,7 @@ types_map = { '.txt': ('text/plain', 'document'), '.ustar': ('application/x-ustar', 'binary'), '.vcf': ('text/x-vcard', 'document'), + '.vtt': ('text/vtt', 'document'), '.wav': ('audio/x-wav', 'audio'), '.webm': ('video/webm', 'video'), '.wiz': ('application/msword', 'document'),