-1

I want to play a video in view(HTML) by passing URL as a input how can I do that?

I have a url like

 /ui/UploadedImages/Wildlife.wmv

by passing this url to jsp I want to play a video

Daksh Shah
  • 2,997
  • 6
  • 37
  • 71
user3607376
  • 55
  • 2
  • 2
  • 9

1 Answers1

1

HTML5 Video - How It Works

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

View this link

But for wmv format please see this link

Community
  • 1
  • 1
xrcwrn
  • 5,339
  • 17
  • 68
  • 129