stremio-shell icon indicating copy to clipboard operation
stremio-shell copied to clipboard

A simple tip!

Open JohnnyFireOne opened this issue 2 months ago • 0 comments

Replace the lines above into the server.js file and you get IINA,Infuse,MPV video streaming playback!

    var players = {
       infuse: {
title: "Infuse",
args: ["-a", "Infuse"],
subArg: null,
timeArg: null,
playArg: '',

darwin: {
  path: ["/usr/bin/open"]

} }, mpv: { title: "MPV", args: ["-a", "MPV"], subArg: null, timeArg: null, playArg: '',

darwin: {
  path: ["/usr/bin/open"]

} }, iina: { title: "IINA", args: ["-a", "IINA"], subArg: null, timeArg: null, playArg: '',

darwin: {
  path: ["/usr/bin/open"]

} } };

JohnnyFireOne avatar Oct 18 '25 11:10 JohnnyFireOne