How to upload Video and audio files in vaadin?

Hello Vaadin Experts,

I have doubt in how to upload a video and audio files and display them in the UI screen like we see in the Youtube. If the user click on play button the video or audio should be played.

Please help me out.

Thanks & Regards,

Siva Tammana.

This is a two step process (perhaps even 3)

  1. Select the file to be uploaded to the server (No matter what type it is)
    For this the vaadin Upload component can be used.
    The file is then on your server and can/should be stored on the server disk
  2. (Optional) transcode the file in a format supported by your media player used in step 3
    This has nothing to do with vaadin and is usually very cpu intensive
  3. Embed a media player in vaadin to playback the encoded file

https://vaadin.com/book/-/page/components.embedded.html
https://vaadin.com/forum/-/message_boards/view_message/18217

André