Git Product home page Git Product logo

fckytads's Introduction

He77o W0r7d

  • 📫 How to reach me?
    Over discord ឵឵឵MaoMao#4832 (yes you will not be able to add me like that just make sure to search me on justemutarkov discord servers)

fckytads's People

Contributors

themaoci avatar

Watchers

 avatar

Forkers

yaelahrip

fckytads's Issues

Uncaught (in promise) TypeError: Failed to set the 'currentTime' property on 'HTMLMediaElement': The provided double value is non-finite.

0x48piraj/fadblock#139 (comment)

This was your issue on the fadblock page.
There is an other thing what I forgot there.:

if (fad_videoPlayer.currentTime < fad_videoPlayer.duration - 0.1) 
        {
          fad_videoPlayer.currentTime = fad_videoPlayer.duration - 0.1;
        }

fad_videoPlayer.duration becomes undefined. then you subsract from it a number (0.1) . The result will become NaN ( Not a Number) datatype,which is the same as infinity in javascript. There is a very helpful javascript function for exactly for this problem: isFinite() takes a variable and returns with true or false values:
The HTMLMediaElement.currentTime must be float/double value. That's the reason of this exception.

let duration = fad_videoPlayer.duration - 0.1
if (fad_videoPlayer.currentTime < duration  && isFinite(duration)) {
            fad_videoPlayer.currentTime = duration;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.