Advertisement
phpface

Untitled

May 7th, 2022
1,048
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'streamtube/player/file/setup', function( $setup, $source ){
  2.     if( $setup['sources'][0]['type'] == 'video/videopress' ){
  3.         $setup['sources'][0]['type'] = 'video/mp4';
  4.     }
  5.     return $setup;
  6. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement