├── .gitignore ├── LICENSE ├── README.md ├── VideoTools.sln ├── VideoTools ├── AboutWindow.xaml ├── AboutWindow.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── VideoTools.csproj ├── VideoTools.csproj.user ├── assets │ ├── fonts │ │ └── iconfont.ttf │ └── videotools.ico └── videotools.ico └── imgs ├── 1.png ├── compress-orig.png ├── process-withgpu.png └── size-compress.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/README.md -------------------------------------------------------------------------------- /VideoTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools.sln -------------------------------------------------------------------------------- /VideoTools/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/AboutWindow.xaml -------------------------------------------------------------------------------- /VideoTools/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /VideoTools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/App.config -------------------------------------------------------------------------------- /VideoTools/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/App.xaml -------------------------------------------------------------------------------- /VideoTools/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/App.xaml.cs -------------------------------------------------------------------------------- /VideoTools/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/MainWindow.xaml -------------------------------------------------------------------------------- /VideoTools/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/MainWindow.xaml.cs -------------------------------------------------------------------------------- /VideoTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VideoTools/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VideoTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/Properties/Resources.resx -------------------------------------------------------------------------------- /VideoTools/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VideoTools/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/Properties/Settings.settings -------------------------------------------------------------------------------- /VideoTools/VideoTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/VideoTools.csproj -------------------------------------------------------------------------------- /VideoTools/VideoTools.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/VideoTools.csproj.user -------------------------------------------------------------------------------- /VideoTools/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /VideoTools/assets/videotools.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/assets/videotools.ico -------------------------------------------------------------------------------- /VideoTools/videotools.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/VideoTools/videotools.ico -------------------------------------------------------------------------------- /imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/imgs/1.png -------------------------------------------------------------------------------- /imgs/compress-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/imgs/compress-orig.png -------------------------------------------------------------------------------- /imgs/process-withgpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/imgs/process-withgpu.png -------------------------------------------------------------------------------- /imgs/size-compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csthinker/VideoTools/HEAD/imgs/size-compress.png --------------------------------------------------------------------------------