Flash HTTP Streaming - Multiple Files

With Flash 10.1+ and the ability to use appendBytes in NetStream, you can use HTTP streaming in Flash to deliver video. But it seems that for the delivery method, the segments should be stored in one file on disk, which can only be split into discrete segment files using the FMS or the Apache module. You can cache individual segment files after they are created, but the documentation indicates that you should always use the FMS / Apache module to create these files in the first instance.

Is it possible to split a single file on a disk into several segments on a disk without using FMS, a Wowza product or Apache?

+6
source share
1 answer

There was an application that decompiled F4fpackager output so that it could be hosted anywhere without the Apache module. Sorry, this app has been revoked.

It should be possible to use proxies to cache fragments. Then you can use these cached files on any web server.

0
source

Source: https://habr.com/ru/post/901618/


All Articles