detect webm/mp4 and set mime type correctly
This commit is contained in:
parent
4557503256
commit
13b8a18e21
@ -83,7 +83,10 @@ class Article:
|
|||||||
msg += '\n'
|
msg += '\n'
|
||||||
msg += self.message() + '\n'
|
msg += self.message() + '\n'
|
||||||
msg += '--{}\n'.format(self.boundary)
|
msg += '--{}\n'.format(self.boundary)
|
||||||
msg += 'Content-Type: image/{}\n'.format(self.j['ext'])
|
mtype = 'image'
|
||||||
|
if self.j['ext'] in ['.mp4', '.webm']:
|
||||||
|
mtype = 'video'
|
||||||
|
msg += 'Content-Type: {}/{}\n'.format(mtype, self.j['ext'])
|
||||||
msg += 'Content-Disposition: form-data; filename="{}{}"; name="import"\n'.format(self.j['filename'], self.j['ext'])
|
msg += 'Content-Disposition: form-data; filename="{}{}"; name="import"\n'.format(self.j['filename'], self.j['ext'])
|
||||||
msg += 'Content-Transfer-Encoding: base64\n'
|
msg += 'Content-Transfer-Encoding: base64\n'
|
||||||
msg += '\n'
|
msg += '\n'
|
||||||
|
Reference in New Issue
Block a user