remotes/1693045480750635534/spooky-22
Aevann1 2021-10-01 22:28:31 +02:00
parent f189ea773d
commit 759bc71b44
1 changed files with 3 additions and 6 deletions

View File

@ -251,12 +251,9 @@ def sanitize(sanitized, noimages=False):
htmlsource = f'<div style="padding-top:5px; padding-bottom: 10px;"><iframe style="max-width:100%" frameborder="0" src="{url}?controls=0"></iframe></div>'
sanitized = sanitized.replace(replacing, htmlsource)
print(sanitized)
for i in re.finditer('<a target="_blank" rel="nofollow noopener noreferrer" href="(https:.*?\.mp4)"', sanitized):
url = i.group(1)
replacing = f'<a target="_blank" rel="nofollow noopener noreferrer" href="{url}">{url}</a>'
htmlsource = f'<video controls="" preload="metadata" style="max-width: 100%"><source src="{url}" type="video/mp4"></video>'
sanitized = sanitized.replace(replacing, htmlsource)
for i in re.finditer('https:.*?\.mp4', sanitized):
url = i.group(0)
sanitized = sanitized.replace(url, f'<video controls="" preload="metadata" style="max-width: 100%"><source src="{url}" type="video/mp4"></video>')
for i in re.finditer('<a href="(https://open.spotify.com/embed/.*?)"', sanitized):
url = i.group(1)