diff --git a/README.md b/README.md new file mode 100644 index 0000000..4a3465b --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# Video Preview + +> Preview a video file by rendering random frames. + +--- + +## Features + +- Read random frames from a video + +## Screenshots + +[![screenshot](wiki/screenshot-1-h240.png)](wiki/screenshot-1.png) [![screenshot](wiki/screenshot-2-h240.png)](wiki/screenshot-2.png) + +--- + +## Background + +It’s quite common for me to build a tool for myself to do a specific task. These tools are usually pretty crude and never get shared. This tool is an exception, it’s still grossly crude but I’m sharing it. + +I was sorting through a large number of video files. I wasn’t certain what each file contained and playing each video was frustratingly slow. I needed a tool that would read a video file and give me a few video frames. And this Video Preview was born. + +--- + +## Releases & Builds + +See [Releases](/HiImRay_Public/video-preview/releases) + +## Acknowledgements + +This software uses a number of dependencies and assets from third-parties. +These developers and artists deserve due credit for their work and for their commitment to sharing their work freely. +Each product is released under their own particular license, for more information please visit their websites. + +- [Feather - Simply Beautiful Open Source Icons](https://feathericons.com/) +- [FFmpeg](https://www.ffmpeg.org/) +- [MediaToolkit](https://github.com/mtebenev/MediaToolkit.NetCore) + +## License + +None. \ No newline at end of file diff --git a/.gitignore b/source/.gitignore similarity index 100% rename from .gitignore rename to source/.gitignore diff --git a/AppResource.Designer.cs b/source/AppResource.Designer.cs similarity index 100% rename from AppResource.Designer.cs rename to source/AppResource.Designer.cs diff --git a/AppResource.resx b/source/AppResource.resx similarity index 100% rename from AppResource.resx rename to source/AppResource.resx diff --git a/MainForm.Designer.cs b/source/MainForm.Designer.cs similarity index 100% rename from MainForm.Designer.cs rename to source/MainForm.Designer.cs diff --git a/MainForm.cs b/source/MainForm.cs similarity index 100% rename from MainForm.cs rename to source/MainForm.cs diff --git a/MainForm.resx b/source/MainForm.resx similarity index 100% rename from MainForm.resx rename to source/MainForm.resx diff --git a/Models/AppSession.cs b/source/Models/AppSession.cs similarity index 100% rename from Models/AppSession.cs rename to source/Models/AppSession.cs diff --git a/OptionsForm.cs b/source/OptionsForm.cs similarity index 100% rename from OptionsForm.cs rename to source/OptionsForm.cs diff --git a/OptionsForm.resx b/source/OptionsForm.resx similarity index 100% rename from OptionsForm.resx rename to source/OptionsForm.resx diff --git a/Program.cs b/source/Program.cs similarity index 100% rename from Program.cs rename to source/Program.cs diff --git a/References/RyzStudio3.dll b/source/References/RyzStudio3.dll similarity index 100% rename from References/RyzStudio3.dll rename to source/References/RyzStudio3.dll diff --git a/Resources/arrow-right-circle-2.png b/source/Resources/arrow-right-circle-2.png similarity index 100% rename from Resources/arrow-right-circle-2.png rename to source/Resources/arrow-right-circle-2.png diff --git a/Resources/arrow-right-circle-3.png b/source/Resources/arrow-right-circle-3.png similarity index 100% rename from Resources/arrow-right-circle-3.png rename to source/Resources/arrow-right-circle-3.png diff --git a/Resources/arrow-right-circle.png b/source/Resources/arrow-right-circle.png similarity index 100% rename from Resources/arrow-right-circle.png rename to source/Resources/arrow-right-circle.png diff --git a/Resources/file-2.png b/source/Resources/file-2.png similarity index 100% rename from Resources/file-2.png rename to source/Resources/file-2.png diff --git a/Resources/file-3.png b/source/Resources/file-3.png similarity index 100% rename from Resources/file-3.png rename to source/Resources/file-3.png diff --git a/Resources/file.png b/source/Resources/file.png similarity index 100% rename from Resources/file.png rename to source/Resources/file.png diff --git a/Resources/loading-block.gif b/source/Resources/loading-block.gif similarity index 100% rename from Resources/loading-block.gif rename to source/Resources/loading-block.gif diff --git a/Resources/refresh-cw-2.png b/source/Resources/refresh-cw-2.png similarity index 100% rename from Resources/refresh-cw-2.png rename to source/Resources/refresh-cw-2.png diff --git a/Resources/refresh-cw-3.png b/source/Resources/refresh-cw-3.png similarity index 100% rename from Resources/refresh-cw-3.png rename to source/Resources/refresh-cw-3.png diff --git a/Resources/refresh-cw.png b/source/Resources/refresh-cw.png similarity index 100% rename from Resources/refresh-cw.png rename to source/Resources/refresh-cw.png diff --git a/Resources/settings-2.png b/source/Resources/settings-2.png similarity index 100% rename from Resources/settings-2.png rename to source/Resources/settings-2.png diff --git a/Resources/settings-3.png b/source/Resources/settings-3.png similarity index 100% rename from Resources/settings-3.png rename to source/Resources/settings-3.png diff --git a/Resources/settings.png b/source/Resources/settings.png similarity index 100% rename from Resources/settings.png rename to source/Resources/settings.png diff --git a/UIResource.Designer.cs b/source/UIResource.Designer.cs similarity index 100% rename from UIResource.Designer.cs rename to source/UIResource.Designer.cs diff --git a/UIResource.resx b/source/UIResource.resx similarity index 100% rename from UIResource.resx rename to source/UIResource.resx diff --git a/VideoPreview.csproj b/source/VideoPreview.csproj similarity index 100% rename from VideoPreview.csproj rename to source/VideoPreview.csproj diff --git a/build.bat b/source/build.bat similarity index 100% rename from build.bat rename to source/build.bat diff --git a/favicon.ico b/source/favicon.ico similarity index 100% rename from favicon.ico rename to source/favicon.ico diff --git a/skye.sln b/source/skye.sln similarity index 100% rename from skye.sln rename to source/skye.sln diff --git a/wiki/screenshot-1-h240.png b/wiki/screenshot-1-h240.png new file mode 100644 index 0000000..87406d5 Binary files /dev/null and b/wiki/screenshot-1-h240.png differ diff --git a/wiki/screenshot-1.png b/wiki/screenshot-1.png new file mode 100644 index 0000000..c351dae Binary files /dev/null and b/wiki/screenshot-1.png differ diff --git a/wiki/screenshot-2-h240.png b/wiki/screenshot-2-h240.png new file mode 100644 index 0000000..2a2ee7a Binary files /dev/null and b/wiki/screenshot-2-h240.png differ diff --git a/wiki/screenshot-2.png b/wiki/screenshot-2.png new file mode 100644 index 0000000..217ee80 Binary files /dev/null and b/wiki/screenshot-2.png differ