GithubHelp home page GithubHelp logo

On Safari it does not work. about mat-video HOT 6 CLOSED

nkoehler avatar nkoehler commented on May 27, 2024 3
On Safari it does not work.

from mat-video.

Comments (6)

am-awais avatar am-awais commented on May 27, 2024

Issue when i play mat video(any format) on Safari it play's with delay like its buffering/loading (after 1s of time interval) but actually its not and when video finish i restart same happens again.

from mat-video.

cchatfield avatar cchatfield commented on May 27, 2024

Seems to be related to this section in video.component.ts

    @Output() timeChange = new EventEmitter<number>();
    set time(val: number) {
        const video: HTMLVideoElement = this.getVideoTag();
        if (video && val) {
            if (val > video.duration) {
                val = video.duration;
            }
            if (val < 0) {
                val = 0;
            }
            if (val !== video.currentTime) {
                video.currentTime = val;
            }
            if (this.lastTime !== video.currentTime) {
                setTimeout(() => this.timeChange.emit(video.currentTime), 0);
                this.lastTime = video.currentTime;
            }
        }
    }

Commenting out the video.currentTime = val resolves the choppy playback on safari. Maybe something with the val is not in line with the current time and the continuous setting freezes playback.

    @Output() timeChange = new EventEmitter<number>();
    set time(val: number) {
        const video: HTMLVideoElement = this.getVideoTag();
        if (video && val) {
            if (val > video.duration) {
                val = video.duration;
            }
            if (val < 0) {
                val = 0;
            }
            if (val !== video.currentTime) {
                // video.currentTime = val;
            }
            if (this.lastTime !== video.currentTime) {
                setTimeout(() => this.timeChange.emit(video.currentTime), 0);
                this.lastTime = video.currentTime;
            }
        }
    }

from mat-video.

iamdimitar3d avatar iamdimitar3d commented on May 27, 2024

Will there be a fix for this?

from mat-video.

g-hamilton avatar g-hamilton commented on May 27, 2024

I have the same end result (problem) when tested on Chrome for iOS. So this is affecting more than one browser and device. Really hope there will be a fix soon.

from mat-video.

thibserot avatar thibserot commented on May 27, 2024

I've proposed a fix for this issue: #56

Feedback more than welcome!

from mat-video.

nkoehler avatar nkoehler commented on May 27, 2024

More feedback surrounding this issue is always appreciated, but for now I've merged the fix. Thanks again.

Improved Safari playback in version 2.8.1.

from mat-video.

Related Issues (20)

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.