Variable |
Type |
Variable |
Type |
When speaking of the Icecast protocol here, actually it's just the HTTP protocol, and this document will explain further how source clients need to send data to Icecast.
Since Icecast version 2.4.0 there is support for the standard HTTP PUT
method.
The mountpoint to which to send the data is specified by the URL path.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Turns: { | |
* keyOne: promiseOne, | |
* keyTwo: promiseTwo | |
* } into { | |
* keyOne: resolutionOne, | |
* keyTwo: resolutionTwo | |
* } | |
* | |
* (To avoid messing around with unclear array indices when calling different |