Let's first observe some trends in video delivery and presentation, with particular focus on the ways that content can be delivered to various devices and platforms.
- All web browsers are able to play back MP4 files.
- Most web browsers are able to play back DASH video (MSE technology is required). This provides adaptive streaming and more advanced playback control features.
- Safari is able to play back HLS video, which is the Apple variant of adaptive streaming.
- With the help of plugins (Silverlight) all desktop browsers are able to play back Smooth Streaming video (Chome is dropping Silverlight support, though).
- Android can consume MP4 and DASH video natively and with the help of custom libraries, Smooth Streaming video.
- iOS can consume MP4 and HLS video and with the help of custom libraries, Smooth Streaming video.
The real picture is even more complicated but as you see, different devices focus on different formats, with MP4 being the only really universal factor.
Generally, MP4 is not satisfactory due to its lack of adaptive streaming and DRM support, which are both critical for presenting premium content. This means that if you are creating a video service, you will need to provide your content using multiple different formats, to cover all the client platforms.
This is the role of a media server like Wowza or Unified Streaming or Azure Media Services - these are products that can take a video in one input format and on-the-fly convert it to other formats, serving the same content in a different packaging format to different client devices.
If all you are doing is serving static MP4 files or already have your videos converted into all the formats you need, a media server is useless for you. Note that the media server makers will still try to sell you one! I see many customers using a media server without any need - they just do not realize that all they need is a web server.
Video files are just video files. With one exception (Smooth Streaming), no special server-side logic is needed and any random web server can deliver them to client devices just fine. Smooth Streaming does require a free plugin from Microsoft if you are using IIS as your web server or an equivalent if you are using something else. However, in today's world you can almost certainly use DASH everywhere instead of Smooth Streaming, alleviating the problem.
The word "streaming" is often used in marketing materials and is very flexible and misleading, so I recommend you avoid it. There is nothing special about delivering video data to players - at the end of the day, they are relatively large and important files but do not require special handling.
serving static MP4 files or already have your videos converted into all the formats you need
, and sincei have MP4 files
, (only MP4 formats), this means i CAN go with thisMP4
files withApache + JWPlayer
only (without any Media Server). Is it please? (Because here is the example, withMP4
format only, but i tested on all iOS/Android/Windows: support.jwplayer.com/customer/portal/articles/…) – Sedimentary