IMediaFile.cs 372 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. using MatrixIO.IO.Bmff;
  7. namespace BmffViewer
  8. {
  9. public interface IMediaFile
  10. {
  11. string Name { get; }
  12. string FullName { get; }
  13. string Extension { get; }
  14. string DirectoryName { get; }
  15. Stream SourceStream { get; }
  16. }
  17. }