Git Product home page Git Product logo

Comments (5)

Kagami avatar Kagami commented on August 12, 2024 1
diff --git a/example/renderer.js b/example/renderer.js
index 9c93ff2..a932c75 100644
--- a/example/renderer.js
+++ b/example/renderer.js
@@ -38,6 +38,7 @@ class Main extends React.PureComponent {
   }
   handleMPVReady(mpv) {
     this.mpv = mpv;
+    this.mpv.property("loop-file", true);
     const observe = mpv.observe.bind(mpv);
     ["pause", "time-pos", "duration", "eof-reached"].forEach(observe);
     this.mpv.command("loadfile", path.join(__dirname, "tos.mkv"));

This works for me.

from mpv.js.

simpleshadow avatar simpleshadow commented on August 12, 2024

@Kagami Works for me too 👍 :

$('embed')[0].postMessage({"type": "set_property", "data": {"name": "loop-file", "value": true }});

Why does this work when set true? MPV docs indicate it's an option --loop-file=<N|inf|no>.

from mpv.js.

Kagami avatar Kagami commented on August 12, 2024

set_property uses mpv_set_property so it needs correct value type (which is autodetected in HandleMessage in index.cc). We can introduce set_property_string message which will use mpv_set_property_string instead if needed.

from mpv.js.

simpleshadow avatar simpleshadow commented on August 12, 2024

@Kagami I think the mpv_set_property_string would be very useful and unsure how to go about it.

I'm currently trying to figure out how to issue the following command via mpv.js to create temporary thumbnail images:

mpv --really-quiet --vo=image --vo-image-format=jpg --aid=no --sid=no --start=1% --frames=1 video.avi

I'm assuming it is not possible without a mpv_set_property_string?

EDIT:

Currently trying to post the following set of messages causes Electron to crash:

var embed = $('embed')[0];
embed.postMessage({"type": "set_property", "data": {"name": "really-quiet", "value": null }});
embed.postMessage({"type": "set_property", "data": {"name": "frames", "value": 1 }});
embed.postMessage({"type": "set_property", "data": {"name": "vo", "value": "image" }});
embed.postMessage({"type": "set_property", "data": {"name": "vo-image-format", "value": "jpg" }});
embed.postMessage({"type": "set_property", "data": {"name": "aid", "value": "no" }});
embed.postMessage({"type": "set_property", "data": {"name": "sid", "value": "no" }});
embed.postMessage({"type": "set_property", "data": {"name": "start", "value": "1%" }});
embed.postMessage({"type": "command", "data": ["loadfile", "video.avi", "replace"]});

from mpv.js.

Kagami avatar Kagami commented on August 12, 2024

You shouldn't use mpv.js for creating thumbnails, it's a video player library.

from mpv.js.

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.