update recording encoder

This commit is contained in:
Luke Pulverenti
2016-11-29 14:13:20 -05:00
parent c80ac9b823
commit c30b82ab44
6 changed files with 88 additions and 73 deletions

View File

@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MediaBrowser.Model.System
{
public interface IEnvironmentInfo
@@ -13,6 +8,7 @@ namespace MediaBrowser.Model.System
string OperatingSystemVersion { get; }
Architecture SystemArchitecture { get; }
string GetEnvironmentVariable(string name);
void SetProcessEnvironmentVariable(string name, string value);
string GetUserId();
string StackTrace { get; }
}