public void Initialize(string path)
        {
            pathLabel.Text = path;
            _filesystem    = new HexImagerFilesystem(pathLabel.Text);

            UpdateListView();
        }
Example #2
0
        static void Main()
        {
            var filesystem = new HexImagerFilesystem(Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\FLIR Tests 2\");
            var map        = filesystem.MapFilenames();
            var imageFile  = map.First();

            var writer = new HexImagerVideoWriter(imageFile);

            writer.WriteFile(Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\FLIR Tests 2\testVideo.avi");
        }