当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js MediaElement speed()用法及代码示例


p5.j​​s中p5.MediaElement的speed()方法用于设置或返回媒体元素的当前播放速度。它接受一个参数,该参数表示要用于媒体播放的速度倍增器。值为2.0将以两倍的速度播放媒体,值为0.5将以一半的速度播放媒体。还可以指定负值来反向播放媒体,但是,并非所有浏览器都正确支持负值。

可以通过不向函数传递任何参数来返回媒体的当前播放速度。

用法:

speed( speed )

参数:此方法接受如上所述和以下描述的单个参数:

  • speed:它是一个数字,指定要用于播放速度的乘数。它是一个可选参数。

返回值:此方法返回一个Number,该Number表示媒体元素的当前播放速度。



以下示例说明了p5.js中的speed()方法:

范例1:

Javascript

function setup() { 
    createCanvas(500, 400); 
    textSize(20); 
  
    text("Click on the buttons to slow " + 
         "or speed up the video", 20, 20); 
  
    example_media = 
      createVideo("sample-video.mp4"); 
    example_media.size(500, 300); 
    example_media.position(20, 100); 
  
    example_media.showControls(); 
  
    slowBtn = 
      createButton("Slow Down Video"); 
    slowBtn.position(30, 40); 
    slowBtn.mousePressed(slowVideo); 
  
    fastBtn = 
      createButton("Speed Up Video"); 
    fastBtn.position(160, 40); 
    fastBtn.mousePressed(speedVideo); 
  
    text("The video is playing at normal speed", 
         20, 80); 
} 
  
function slowVideo() { 
  clear(); 
  
  // Slow down the video to 0.3 times 
  // of the normal the speed 
  example_media.speed(0.3); 
  
  text("The video is now slowed down", 
       20, 80); 
  
  text("Click on the buttons to slow " + 
       "or speed up the video", 20, 20); 
} 
  
function speedVideo() { 
  clear(); 
  
  // Speed up the video to two times 
  // the speed 
  example_media.speed(2.0); 
  
  text("The video is now sped up", 
       20, 80); 
  
  text("Click on the buttons to slow " + 
       "or speed up the video", 20, 20); 
}

输出:

范例2:

Javascript

function setup() { 
  createCanvas(500, 400); 
  textSize(20); 
  
  text("Move the slider to speed up " + 
       "or slow down the video", 20, 20); 
  
  example_media = 
    createVideo("sample-video.mp4"); 
  example_media.size(500, 300); 
  example_media.position(20, 80); 
  
  example_media.showControls(); 
  
  speedSlider = 
    createSlider(0.1, 3.0, 1.0, 0.1); 
  speedSlider.position(20, 40); 
  speedSlider.input(changeSpeed); 
} 
  
function changeSpeed() { 
  clear(); 
  
  let speedVal = speedSlider.value(); 
  
  // Set the media speed to the slider value 
  example_media.speed(speedVal); 
  
  // Get current playback speed 
  let currSpeed = example_media.speed(); 
  
  text("Move the slider to speed up or " +  
       "slow down the video", 20, 20); 
  text("Video is playing at speed:" + 
       currSpeed, 20, 80); 
}

输出:

在线编辑: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考:https://p5js.org/reference/#/p5.MediaElement/speed

相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.MediaElement speed() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。