if you set videoclip.streambitrates=[96] it should try the lowest bitrate first before switching to the faster bitrate as long as the highest bitrate is lower than 1500kbps.
You'll have to have videoclip.switchingStrategy="full-adaptation" or one of the other switching strategies explicitly set; for 96kbps however, which is probably an audio-only stream (imagine what 96kbps video would look like) I have no idea how the player would handle that, or even if it would handle that, set minbandwidth=90 and see what happens...
Setting streamBitrates=[0] hands all control of initial bitrate choice to the player, however, without SwitchingStrategy set, it probably won't switch at all.
Based on reading the spec, isn't each segment from different bitrates interchangeable? Why not just replace the higher bitrate segments with the lower bitrate segments. Either in the manifest or the actual files.
That is what the player does, but it is not directly under your control, and the above settings may not always work exactly as I described.
- Joel