-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b24b7d
commit 494fd9d
Showing
21 changed files
with
72 additions
and
21 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+262 KB
(3800%)
Plugins Store/Totoro.Plugins.MediaDetection.Win11MediaPlayer.dll
Binary file not shown.
11 changes: 10 additions & 1 deletion
11
Plugins/Media Detection/Totoro.Plugins.MediaDetection.MpcHc/Config.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
using Totoro.Plugins.Options; | ||
using System.ComponentModel; | ||
using Totoro.Plugins.Options; | ||
|
||
namespace Totoro.Plugins.MediaDetection.MpcHc; | ||
|
||
public class Config : ConfigObject | ||
{ | ||
[DisplayName("Path")] | ||
[Description("Path to executable")] | ||
[Glyph(Glyphs.File)] | ||
public string FileName { get; set; } = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), @"MPC-HC\mpc-hc64.exe"); | ||
|
||
[Glyph(Glyphs.Website)] | ||
public string Host { get; set; } = "127.0.0.1"; | ||
|
||
[Glyph(Glyphs.Port)] | ||
[Description("View > Options > Web Interface > Listen on port")] | ||
public int Port { get; set; } = 13579; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+7.86 KB
Plugins/Media Detection/Totoro.Plugins.MediaDetection.MpcHc/mpc-hc-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion
6
Plugins/Media Detection/Totoro.Plugins.MediaDetection.Mpv/Config.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
using Totoro.Plugins.Options; | ||
using System.ComponentModel; | ||
using Totoro.Plugins.Options; | ||
|
||
namespace Totoro.Plugins.MediaDetection.Generic; | ||
|
||
public class MpvConfig : ConfigObject | ||
{ | ||
[DisplayName("Path")] | ||
[Description("Path to executable")] | ||
[Glyph(Glyphs.File)] | ||
public string FileName { get; set; } = @""; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+45.9 KB
Plugins/Media Detection/Totoro.Plugins.MediaDetection.Mpv/mpv-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions
23
Plugins/Media Detection/Totoro.Plugins.MediaDetection.Vlc/Config.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System.ComponentModel; | ||
using Totoro.Plugins.Options; | ||
|
||
namespace Totoro.Plugins.MediaDetection.Vlc; | ||
|
||
public class Config : ConfigObject | ||
{ | ||
[DisplayName("Path")] | ||
[Description("Path to executable")] | ||
[Glyph(Glyphs.File)] | ||
public string FileName { get; set; } = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), @"VideoLAN\VLC\vlc.exe"); | ||
|
||
[Glyph(Glyphs.Website)] | ||
[Description("Enable web interface Preferences > Interface > Main Interfaces > Web Interface")] | ||
public string Host { get; set; } = "127.0.0.1"; | ||
|
||
[Glyph(Glyphs.Port)] | ||
public int Port { get; set; } = 8080; | ||
|
||
[Glyph(Glyphs.Password)] | ||
[Description("Password set in Preferences > Interface > Main Interfaces > Lua > Lua HTTP password")] | ||
public string Password { get; set; } = ""; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+16.9 KB
Plugins/Media Detection/Totoro.Plugins.MediaDetection.Vlc/vlc_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+260 KB
...ins/Media Detection/Totoro.Plugins.MediaDetection.Win11MediaPlayer/wmp-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters