├── .gitattributes ├── .gitignore ├── App.config ├── ConverterForm.Designer.cs ├── ConverterForm.cs ├── ConverterForm.resx ├── CropForm.Designer.cs ├── CropForm.cs ├── CropForm.resx ├── FFmpeg.cs ├── FFmpeg ├── ffmpeg.exe └── gpl-3.0.txt ├── LICENSE.md ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── clock.png ├── cross.png ├── tick.png └── webm.ico ├── WebMConverter.csproj └── icon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/App.config -------------------------------------------------------------------------------- /ConverterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/ConverterForm.Designer.cs -------------------------------------------------------------------------------- /ConverterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/ConverterForm.cs -------------------------------------------------------------------------------- /ConverterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/ConverterForm.resx -------------------------------------------------------------------------------- /CropForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/CropForm.Designer.cs -------------------------------------------------------------------------------- /CropForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/CropForm.cs -------------------------------------------------------------------------------- /CropForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/CropForm.resx -------------------------------------------------------------------------------- /FFmpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/FFmpeg.cs -------------------------------------------------------------------------------- /FFmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/FFmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /FFmpeg/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/FFmpeg/gpl-3.0.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/README.md -------------------------------------------------------------------------------- /Resources/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Resources/clock.png -------------------------------------------------------------------------------- /Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Resources/cross.png -------------------------------------------------------------------------------- /Resources/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Resources/tick.png -------------------------------------------------------------------------------- /Resources/webm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/Resources/webm.ico -------------------------------------------------------------------------------- /WebMConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/WebMConverter.csproj -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebMBro/WebMConverter/HEAD/icon.ico --------------------------------------------------------------------------------