Giter Site home page Giter Site logo

Loading videos as audio files about sound HOT 4 CLOSED

pixijs avatar pixijs commented on May 22, 2024 4
Loading videos as audio files

from sound.

Comments (4)

kreezii avatar kreezii commented on May 22, 2024

Thank you! I was getting crazy trying to load and play a video, I didn't know what was going wrong until I realised I was using pixi-sound library and that was the problem. As far as I could test it, your fix works without problems.

from sound.

lazar0169 avatar lazar0169 commented on May 22, 2024

Thank you Stefan, you have saved me! I was having hard time to figure it out, but this works without problems.

from sound.

StefanStojanovic avatar StefanStojanovic commented on May 22, 2024

Glad I could help! By the way, as this solution is a bit hackish, I rewrote it in typescript friendly manner. As far as I can tell from my tests it seems to work without any problems. Btw I know that extensions array and check is a bit of an overkill, but better safe then sorry :)

const VIDEO_EXTENSIONS: string[] = ['mp4'];
window.addEventListener('load', () => {
    for (const extension of VIDEO_EXTENSIONS) {
        const extensionIndex: number = PIXI.sound.utils.extensions.indexOf(extension);
        if (extensionIndex !== -1) {
            PIXI.sound.utils.extensions.splice(extensionIndex, 1);
            PIXI.loaders.Resource.setExtensionLoadType(extension, PIXI.loaders.Resource.LOAD_TYPE.VIDEO);
            PIXI.loaders.Resource.setExtensionXhrType(extension, PIXI.loaders.Resource.XHR_RESPONSE_TYPE.DEFAULT);
        }
    }
});

from sound.

bigtimebuddy avatar bigtimebuddy commented on May 22, 2024

I will remove mp4 as an extension in the next version.

from sound.

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.