Giter Site home page Giter Site logo

Better Example about libjass HOT 4 CLOSED

arnavion avatar arnavion commented on September 24, 2024
Better Example

from libjass.

Comments (4)

Anime4000 avatar Anime4000 commented on September 24, 2024

You can take a look on my example:
https://kwikmandarin.net/content/demo/html5-ass/index3.html

simply see Source Script 👍

from libjass.

Arnavion avatar Arnavion commented on September 24, 2024

Yes, it could do with some more comments. Meanwhile:

  1. Use the ASS URL to fetch the ASS object.

    var assLoadedPromise = libjass.ASS.fromUrl(assUrl);

    Note that this is a Promise, i.e., an async operation.

  2. Get a reference to the video element.

    var video = document.querySelector("#idvideo");
  3. Use DefaultRenderer to render subs.

    assLoadedPromise.then(function (ass) {
        var renderer = new libjass.renderers.DefaultRenderer(video, ass);
    });

That's the basic usage. More advanced things below:

  • Autoplay the video when the renderer is ready (it downloads all the fonts referenced in the ASS so it takes time to become ready):

    renderer.addEventListener("ready", function () {
        video.play();
    });
  • Enable / disable the subs (let's say you have a <input type="checkbox" id="enable-disable-subs">):

    document.querySelector("#enable-disable-subs").addEventListener("change", function (event) {
        renderer.setEnabled(event.target.checked);
    }, false);
  • Resize the subs when the video is resized:

    renderer.resize(newWidth, newHeight);

    You would typically get newWidth and newHeight from some user-selection. For example you might have a dropdown with a list of resolutions (like Youtube has).

  • Use WebRenderer instead of DefaultRenderer for more control over the subtitles div, at the cost of losing some convenience features.

from libjass.

maxx1985 avatar maxx1985 commented on September 24, 2024

It works!!! Nice! Thanks a lot for the exaustive explanation!

the code that worked for me is the ''basic one''

<video id="player" controls='controls' >
    <source src="VIDEO_URL_HERE" type="video/mp4">
    <script>
        var assLoadedPromise = libjass.ASS.fromUrl("ASS_URL_HERE");
        var video = document.querySelector("#player");
        assLoadedPromise.then(function (ass) {
            var renderer = new libjass.renderers.DefaultRenderer(video, ass);
        });
    </script>
</video>

Thanks also to Anime4000 i've used the basic structure of your work

from libjass.

Arnavion avatar Arnavion commented on September 24, 2024

http://arnavion.github.io/libjass/demo/index.js now contains more comments. I hope that helps.

from libjass.

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.