How to implement the Adobe HTTP Streaming spec without using their Streaming server

前端 未结 6 1481
旧时难觅i
旧时难觅i 2020-12-28 11:06

As of Flash 10.1, they have added the ability to add bytes into the NetStream object via the appendBytes method (described here http://www.bytearray.org/?p=1689). The main

6条回答
  •  自闭症患者
    2020-12-28 11:37

    You don't need to use their server. Wowza supports Adobe's version of HTTP Streaming and you can implement it yourself by segmenting the videos properly and loading all the segments on a standard HTTP server.

    Links to all the specs for Adobe's HTTP Streaming are here:

    http://help.adobe.com/en_US/HTTPStreaming/1.0/Using/WS9463dbe8dbe45c4c-1ae425bf126054c4d3f-7fff.html

    Trying to hack the client to do some custom style http streaming will be a lot more troublesome.

    Note that HTTP Streaming does not support streaming several different videos but streams a single file that was broken off into separate segments.

    File Packager

    A command-line tool that translates on-demand media files into fragments and writes the fragments to F4F files. The File Packager is an offline tool. You can use the File Packager to encrypt files for use with Flash Access. For more information, see Packaging on-demand media.

    The File Packager is available from adobe.com and is installed with Adobe® Flash® Media Server to the rootinstall/tools/f4fpackager folder.

    Packager download link is on right here: Download File Packager for HTTP Dynamic Streaming

    http://www.adobe.com/products/httpdynamicstreaming/

提交回复
热议问题