Kernel.cs 764 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Controller.MediaInfo;
  2. namespace MediaBrowser.Controller
  3. {
  4. /// <summary>
  5. /// Class Kernel
  6. /// </summary>
  7. public class Kernel
  8. {
  9. /// <summary>
  10. /// Gets the instance.
  11. /// </summary>
  12. /// <value>The instance.</value>
  13. public static Kernel Instance { get; private set; }
  14. /// <summary>
  15. /// Gets the FFMPEG controller.
  16. /// </summary>
  17. /// <value>The FFMPEG controller.</value>
  18. public FFMpegManager FFMpegManager { get; set; }
  19. /// <summary>
  20. /// Creates a kernel based on a Data path, which is akin to our current programdata path
  21. /// </summary>
  22. public Kernel()
  23. {
  24. Instance = this;
  25. }
  26. }
  27. }