public FFmpegProfileCommand(IConfiguration configuration, ILogger <FFmpegProfileCommand> logger)
 {
     _logger           = logger;
     _ffmpegProfileApi = new FFmpegProfileApi(configuration["ServerUrl"]);
 }
示例#2
0
 public ChannelCommand(IConfiguration configuration, ILogger <ChannelCommand> logger)
 {
     _logger           = logger;
     _channelsApi      = new ChannelsApi(configuration["ServerUrl"]);
     _ffmpegProfileApi = new FFmpegProfileApi(configuration["ServerUrl"]);
 }