Video dimensions

master
Bob Mottram 2019-08-20 18:33:53 +01:00
parent df1b49b77f
commit 26a7598c28
1 changed files with 1 additions and 1 deletions

View File

@ -1023,7 +1023,7 @@ def addEmbeddedVideo(content: str) -> str:
url=content.split('"https://www.youtube.com')[1]
if '"' in url:
url=url.split('"')[0].replace('/watch?v=','/embed/')
content=content+"<iframe src=\"https://www.youtube.com"+url+"\" width=\"80%\" height=\"50%\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>"
content=content+"<iframe src=\"https://www.youtube.com"+url+"\" width=\"50%\" height=\"100%\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>"
return content
return content