Open nammminn2 opened 3 years ago
I added this code below inside the object players
present in the function module.exports = function(devices)
, that can be found in the file Contents/MacOS/server.js
iina: {
title: "IINA",
args: ["--no-stdin", "--mpv-resume-playback=no"],
subArg: '--mpv-sub-file=',
timeArg: '--mpv-start=+',
playArg: '',
darwin: {
path: ["/Applications/IINA.app/Contents/MacOS/iina-cli"]
},
linux: {
path: []
},
win32: {
path: []
}
},
I don't know where this line inside the source code of Stremio is and I don't even think this is the right repo. Anyway I tweaked it like that. I hope the devs will implement it in the right way.
Has anyone implemented it?
nope
iina: { title: "IINA", args: ["--no-stdin"], subArg: '--mpv-sub-file=', // DOES WORK timeArg: '--mpv-start=+', // DOESN'T WORK playArg: '', darwin: { path: ["/Applications/IINA.app/Contents/MacOS/iina-cli"] }, linux: { path: [] }, win32: { path: [] } },
Any idea on how to get this working on Infuse?
I added this code below inside the object
players
present in the functionmodule.exports = function(devices)
, that can be found in the fileContents/MacOS/server.js
iina: { title: "IINA", args: ["--no-stdin"], subArg: '--mpv-sub-file=', // DOES WORK timeArg: '--mpv-start=+', // DOESN'T WORK playArg: '', darwin: { path: ["/Applications/IINA.app/Contents/MacOS/iina-cli"] }, linux: { path: [] }, win32: { path: [] } },
I don't know where this line inside the source code of Stremio is and I don't even think this is the right repo. Anyway I tweaked it like that. I hope the devs will implement it in the right way.
Yo. Thanks so much!
thank you so much, its working for IINA. is there a similar way to implement this for Movist Pro player?
@ongkiii, you could try something like:
movistpro: {
title: "Movist Pro",
args: ["-a", "Movist Pro"],
subArg: '',
timeArg: '',
playArg: '',
darwin: {
path: ["/usr/bin/open"]
},
linux: {
path: []
},
win32: {
path: []
}
},
any update ?
@ongkiii, you could try something like:
movistpro: { title: "Movist Pro", args: ["-a", "Movist Pro"], subArg: '', timeArg: '', playArg: '', darwin: { path: ["/usr/bin/open"] }, linux: { path: [] }, win32: { path: [] } },
how can i use it for Infuse App?
I figured out that you can copy the url from the original player and open it with iina
is there a way to add open in iina as another option besides vlc?