0

I have a video in html (the format is webm) and it works but, I want to appear the video title in the html (without writing it).

PS: To put the video, I used Media Element.

Luka Krajnc
  • 915
  • 1
  • 7
  • 21
FRP7
  • 89
  • 2
  • 11
  • Pick a programming language, read the meta data embedded in the video, generate the HTML using that data. – Quentin Jun 23 '15 at 14:41

1 Answers1

2

I suggest you to use JavaScript. You should read attributes of html element to get title of your video. To do that, read more about it here. You can also try to use jQuery and it's method called .attr().

Luka Krajnc
  • 915
  • 1
  • 7
  • 21