• Resolved lennardkohn

    (@lennardkohn)


    Hello,

    I am using All-in-One Video Gallery for quite some time now and I was wondering if I can set the speed controls so that they also enable users to play with 1.25% speed.

    I use this plugin for learning classes and my students find 1.5% too fast but often 1.0 too slow. Something in the middle would be great!

    Thanks for any replies in advance ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Kindly try adding the following PHP code to the bottom of your theme’s functions.php file,

    function aiovg_override_iframe_player_settings( $settings ) {
        $settings['playbackRates'] = array( 0.5, 0.75, 1, 1.25, 1.5, 2 );
        return $settings;
    }
    
    add_filter( 'aiovg_video_settings', 'aiovg_override_iframe_player_settings' );
    
    function aiovg_override_javascript_player_settings( $settings ) {
        $settings['player']['playbackRates'] = array( 0.5, 0.75, 1, 1.25, 1.5, 2 );
        return $settings;
    }
    
    add_filter( 'aiovg_player_settings', 'aiovg_override_javascript_player_settings' );

    Hope this solved your issue!

    Thread Starter lennardkohn

    (@lennardkohn)

    Hello!

    That worked!!! thank you so much <3

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Speed Selection to 1.25x’ is closed to new replies.