vod_speed_param_name
The `vod_speed_param_name` directive sets the name of the parameter used for controlling playback speed in the NGINX-based video-on-demand module.
Description
The vod_speed_param_name directive is used within the NGINX-based VOD Packager module to specify the name of the query parameter that will be utilized to control playback speed when streaming video content. It allows the server to understand how to respond to requests that specify a desired playback speed, thereby enabling adaptive playback rates.
This directive can be configured in different contexts including http, server, or location, which provides flexibility in defining the behavior of playback parameters for various parts of the server configuration. When a client sends a request including the specified speed parameter, the VOD module can adjust the playback accordingly, ensuring a smoother user experience when changing playback rates. The directive accepts a single argument, which is the desired name for the parameter.
Config Example
# Example configuration vod_speed_param_name speed;
Ensure that the parameter name does not conflict with other query parameters that your application may use.
It might not work as expected if not properly matched with client-side implementations.