As part of a project I am currently working on, users will be able to post video clips (any format) to a web-based front-end. The server will transcode the video into a format suitable for playback with AGK2 (i.e. .h264/AAC mp4), and also generate a thumbnail image for the video. This bit is all working nicely.
The app will dynamically create a list of those uploaded videos along with the thumbnail pic - no problem doing this bit.
The problem I have is when the user of the app wants to play one of those videos. Currently, I need to download the entire video file before playing it. Due to the nature of the app, this isn't such a big deal, but I'd love to be able to improve the user experience (and save on their bandwidth) by streaming the video from the server. Is this possible in Tier1?