Documents
Integration with Wowza Streaming Engine
Configuring Hybrid Fetch (HTTP byte serving) for Wowza Streaming Engine can be done using two approaches. Using the manager (GUI) or changing the applications .xml settings file.
Using the Wowza Streaming Engine Manager (GUI)
The following are the steps to follow using the Wowza Streaming Engine Manager:
- Go to your applications
- Select the application to change the setting. This works both with Live and VOD applications
- Click “Edit” on the application’s main view
- Enable Cross-origin resource sharing (CORS) so that CORS HTTP headers are added to all responses
- Save the settings
- Restart the application to activate the changes
Editing the Application.xml file
- Open the following file: [wowza-install-dir]/conf/[application]/Application.xml
- Add the flowing XML data in the HTTPStreamer property:
<!-- HLS -->
<Property>
<Name>cupertinoUserHTTPHeaders</Name>
<Value>Access-Control-Allow-Origin: *|Access-Control-Allow-Methods: GET, OPTIONS|Access-Control-Allow-Headers: Range</Value>
</Property>
<!-- MPEG DASH -->
<Property>
<Name>mpegdashUserHTTPHeaders</Name>
<Value>Access-Control-Allow-Origin: *|Access-Control-Allow-Methods: GET, OPTIONS|Access-Control-Allow-Headers: Range</Value>
</Property>