临时文件

Posted cxxjohnson

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了临时文件相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>

<body>

<video
    id="video-active"
    class="video-active"
    width="640"
    height="390"
    controls="controls">
    <source src="video/test.mp4" type="video/mp4">
</video>
<div id="current">0:00</div>
<div id="duration">0:00</div>

<script>

$(document).ready(function(){
    var vid = document.getElementById("video-active");
    vid.playbackRate = 0.01;
  
  
  $("#video-active").on(
    "timeupdate", 
    function(event){
      onTrackedVideoFrame(this.currentTime, this.duration);
    });
})

function onTrackedVideoFrame(currentTime, duration)
{
    $("#current").text(currentTime);
    $("#duration").text(duration);
}

</script> 

</body>

</html>

  

以上是关于临时文件的主要内容,如果未能解决你的问题,请参考以下文章

想让你的Mac桌面清爽整洁?试试Mac临时文件存储小助手Yoink

将存储在内存中的文件上传到s3

VSCode自定义代码片段——.vue文件的模板

Android主流视频播放及缓存实现原理调研

VSCode自定义代码片段2——.vue文件的模板

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途