Show video and audio on media timeline

main2
Bob Mottram 2019-10-23 14:39:08 +01:00
parent 621795db65
commit f72803ccc3
1 changed files with 18 additions and 0 deletions

View File

@ -1902,6 +1902,15 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \
if attach['url'].endswith(extension): if attach['url'].endswith(extension):
if attachmentCtr>0: if attachmentCtr>0:
attachmentStr+='<br>' attachmentStr+='<br>'
if boxName=='tlmedia':
galleryStr+= \
'<div class="gallery">\n' \
' <a href="'+attach['url']+'">\n' \
' <video width="600" height="400" controls>\n' \
' <source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="video/'+extension.replace('.','')+'">'+ \
translate['Your browser does not support the video tag.']+ \
' </video>\n' \
' </a>\n</div>\n'
attachmentStr+= \ attachmentStr+= \
'<center><video width="400" height="300" controls>' \ '<center><video width="400" height="300" controls>' \
'<source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="video/'+extension.replace('.','')+'">'+ \ '<source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="video/'+extension.replace('.','')+'">'+ \
@ -1916,6 +1925,15 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \
if attach['url'].endswith(extension): if attach['url'].endswith(extension):
if attachmentCtr>0: if attachmentCtr>0:
attachmentStr+='<br>' attachmentStr+='<br>'
if boxName=='tlmedia':
galleryStr+= \
'<div class="gallery">\n' \
' <a href="'+attach['url']+'">\n' \
' <audio controls>\n' \
' <source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="audio/'+extension.replace('.','')+'">'+ \
translate['Your browser does not support the audio tag.']+ \
' </audio>\n' \
' </a>\n</div>\n'
attachmentStr+= \ attachmentStr+= \
'<center><audio controls>' \ '<center><audio controls>' \
'<source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="audio/'+extension.replace('.','')+'">'+ \ '<source src="'+attach['url']+'" alt="'+imageDescription+'" title="'+imageDescription+'" class="attachment" type="audio/'+extension.replace('.','')+'">'+ \