Changelog

11 March 2016 - WebVTT segment duration

<?xml version="1.0"?>
<query>
    <userid><<id>></userid> <!-- required-->
    <userkey><<key>></userkey> <!-- required-->
    <action>[Action]</action> <!-- required-->
    <format>
        <!-- Format fields -->
        <closed_captions>
            <source>[WebVTTCCSource]</source>
            <mux_type>webvtt</mux_type>
            <vtt_segment_duration>[SegmentDuration]</vtt_segment_duration>
        </closed_captions>
    </format>
</query>
{
    "query": {
        "userid": "<<id>>",
        "userkey": "<<key>>",
        "action": "[Action]",
        "format": {
            "closed_captions": {
                "source": "[WebVTTCCSource]",
                "mux_type": "webvtt",
                "vtt_segment_duration": "[SegmentDuration]"
            }
        }
    }
}

25 November 2015 - add_audio_only for Microsoft Smooth Streaming

<?xml version="1.0"?>
<query>
    <userid><<id>></userid> <!-- required-->
    <userkey><<key>></userkey> <!-- required-->
    <action>[Action]</action> <!-- required-->
    <format>
        <!-- Format fields -->
        <output>smooth_streaming</output>
        <add_audio_only>[yes|no]</add_audio_only>
    </format>
</query>
{
    "query": {
        "userid": "<<id>>",
        "userkey": "<<key>>",
        "action": "[Action]",
        "format": {
            "output": "smooth_streaming",
            "add_audio_only": "[yes|no]"
        }
    }
}