Okay,
I found the way the basics of embedding work:

<video controls id="fsvideo"||||poster={{!!poster}}>
<source src={{!!view}}{{!!start}}>
<source src={{!!fallback}}{{!!start}}>
</video>

Here are to more elevated questions. How must I wrap this code to make the Video play Fullscreen by default?

|var  elem=  document.getElementById("fsvideo");
if  (elem.requestFullscreen)  {
  elem.requestFullscreen();
}  else  if  (elem.mozRequestFullScreen)  {
  elem.mozRequestFullScreen();
}  else  if  (elem.webkitRequestFullscreen)  {
  elem.webkitRequestFullscreen();
}|

How do I set startingpoint/endpoint for local videofiles...

yours Jan


Am 19.05.2016 um 01:38 schrieb Jan Johannpeter:
Hello I would like to embed multiple local videos to my TW

Could I set the previewImage to a certain Timecode of the clip while the clip plays from the beginning?
<video controls poster="Test.mp4" position="10sec">
<source src="Test.mp4" <video controls
poster="Test.mp4"
position="10sec">
<source src="Test.mp4" type="video/mp4">
</video>>
</video>

Could I draw the Information out of fields in the tiddler?
<video controls
poster=FieldPoster
position=FieldPosition>
<source src="FieldView" type="video/mp4">
</video

Could I transclude this code or work with a template for tiddlers with the type: movie so that i just would have to fill in the fields?

Thanks for help
Jan


--
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/573E256F.6090400%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to