You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
835 B
41 lines
835 B
namespace Emby.Server.Implementations
|
|
{
|
|
public interface IStartupOptions
|
|
{
|
|
/// <summary>
|
|
/// --ffmpeg
|
|
/// </summary>
|
|
string FFmpegPath { get; }
|
|
|
|
/// <summary>
|
|
/// --ffprobe
|
|
/// </summary>
|
|
string FFprobePath { get; }
|
|
|
|
/// <summary>
|
|
/// --service
|
|
/// </summary>
|
|
bool IsService { get; }
|
|
|
|
/// <summary>
|
|
/// --noautorunwebapp
|
|
/// </summary>
|
|
bool NoAutoRunWebApp { get; }
|
|
|
|
/// <summary>
|
|
/// --package-name
|
|
/// </summary>
|
|
string PackageName { get; }
|
|
|
|
/// <summary>
|
|
/// --restartpath
|
|
/// </summary>
|
|
string RestartPath { get; }
|
|
|
|
/// <summary>
|
|
/// --restartargs
|
|
/// </summary>
|
|
string RestartArgs { get; }
|
|
}
|
|
}
|