├── .gitignore ├── Application ├── FileConverter │ ├── App.config │ ├── Application.xaml │ ├── Application.xaml.cs │ ├── ApplicationTerminateArgs.cs │ ├── Controls │ │ ├── ConversionJobControl.xaml │ │ ├── ConversionJobControl.xaml.cs │ │ ├── EncodingMode.cs │ │ ├── EncodingQualitySliderControl.xaml │ │ ├── EncodingQualitySliderControl.xaml.cs │ │ └── IconButton.cs │ ├── ConversionJobs │ │ ├── ConversionFlags.cs │ │ ├── ConversionJob.cs │ │ ├── ConversionJobFactory.cs │ │ ├── ConversionJob_Excel.cs │ │ ├── ConversionJob_ExtractCDA.cs │ │ ├── ConversionJob_FFMPEG.Converters.cs │ │ ├── ConversionJob_FFMPEG.cs │ │ ├── ConversionJob_Gif.cs │ │ ├── ConversionJob_Ico.cs │ │ ├── ConversionJob_ImageMagick.cs │ │ ├── ConversionJob_Office.cs │ │ ├── ConversionJob_PowerPoint.cs │ │ ├── ConversionJob_Word.cs │ │ └── VideoEncodingSpeed.cs │ ├── ConversionPreset │ │ ├── ConversionPreset.cs │ │ ├── ConversionSettings.cs │ │ ├── ConversionSettingsOverride.cs │ │ └── IConversionSettings.cs │ ├── Diagnostics │ │ ├── Debug.cs │ │ └── DiagnosticsData.cs │ ├── FileConverter.csproj │ ├── Helpers.cs │ ├── IXmlSerializable.cs │ ├── InputPostConversionAction.cs │ ├── OutputType.cs │ ├── Pages.cs │ ├── PathHelpers.cs │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.de.resx │ │ ├── Resources.en.Designer.cs │ │ ├── Resources.en.resx │ │ ├── Resources.es-ES.resx │ │ ├── Resources.fr-FR.resx │ │ ├── Resources.fr.Designer.cs │ │ ├── Resources.it-IT.resx │ │ ├── Resources.pt-BR.resx │ │ ├── Resources.pt.resx │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Registry.cs │ ├── Resources │ │ ├── ApplicationIcon.ico │ │ ├── CancelIcon.png │ │ ├── DeleteIcon.ico │ │ ├── DownIcon.ico │ │ ├── DownloadIcon.png │ │ ├── DuplicatePresetIcon.ico │ │ ├── ExportIcon.ico │ │ ├── FailIcon.png │ │ ├── FileConverterUsage.gif │ │ ├── FolderIcon.ico │ │ ├── GitHub-Documentation-Icon.png │ │ ├── GitHub-Icon.png │ │ ├── GitHub-Issue-Icon.png │ │ ├── ImportIcon.ico │ │ ├── LogIcon.png │ │ ├── PaypalIcon.png │ │ ├── PresetIcon.ico │ │ ├── SayThanksIcon.png │ │ ├── SettingsIcon.ico │ │ ├── SuccessIcon.png │ │ ├── UpIcon.ico │ │ └── WebSite-Icon.png │ ├── SampleData │ │ ├── ConversionJobSampleData.xaml │ │ └── SettingsSampleData.xaml │ ├── Services │ │ ├── ConversionJobsTerminatedEventArgs.cs │ │ ├── ConversionService.cs │ │ ├── IConversionService.cs │ │ ├── INavigationService.cs │ │ ├── ISettingsService.cs │ │ ├── IUpgradeService.cs │ │ ├── NavigationService.cs │ │ ├── SettingsService.Migration.cs │ │ ├── SettingsService.cs │ │ ├── UpgradeService.cs │ │ └── UpgradeVersionDescription.cs │ ├── Settings.StyleCop │ ├── Settings.cs │ ├── Settings.default.xml │ ├── ValueConverters │ │ ├── ApplicationVersionToApplicationName.cs │ │ ├── BitrateToString.cs │ │ ├── ChangelogConverter.cs │ │ ├── ConversionJobToEstimatedRemainingDuration.cs │ │ ├── ConversionJobsToProgressState.cs │ │ ├── ConversionJobsToProgressValue.cs │ │ ├── ConversionSettingsRelevant.cs │ │ ├── ConversionSettingsToString.cs │ │ ├── ConversionStateToBrush.cs │ │ ├── FileNameConverter.cs │ │ ├── Generic │ │ │ ├── BoolInverterConverter.cs │ │ │ ├── BoolToVisibility.cs │ │ │ ├── CollectionContainsElementToBool.cs │ │ │ ├── CultureInfoToStringConverter.cs │ │ │ ├── DoubleToTimeString.cs │ │ │ ├── EqualsConverter.cs │ │ │ ├── FormatStringConverter.cs │ │ │ ├── IcoFileSizeSelectorConverter.cs │ │ │ ├── ObjectToLocalizedString.cs │ │ │ ├── StringToEnum.cs │ │ │ ├── StringToValueType.cs │ │ │ ├── ValueConverterGroup.cs │ │ │ └── ValueToString.cs │ │ ├── InputTypesToBool.cs │ │ ├── OutputTypeEnumToViewModel.cs │ │ └── OutputTypeToVisibility.cs │ ├── Version.cs │ ├── ViewModels │ │ ├── DiagnosticsViewModel.cs │ │ ├── HelpViewModel.cs │ │ ├── InputExtension.cs │ │ ├── InputExtensionCategory.cs │ │ ├── MainViewModel.cs │ │ ├── OutputTypeViewModel.cs │ │ ├── PresetNode.cs │ │ ├── SettingsViewModel.cs │ │ ├── UpgradeViewModel.cs │ │ └── ViewModelLocator.cs │ ├── Views │ │ ├── BindableSelectedItemBehavior.cs │ │ ├── DiagnosticsWindow.xaml │ │ ├── DiagnosticsWindow.xaml.cs │ │ ├── DragDropExtension.cs │ │ ├── HelpWindow.xaml │ │ ├── HelpWindow.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Resources │ │ │ ├── Colors.xaml │ │ │ ├── ConversionPresetTemplates.xaml │ │ │ └── CustomStyles.xaml │ │ ├── SettingsWindow.xaml │ │ ├── SettingsWindow.xaml.cs │ │ ├── UpgradeWindow.xaml │ │ └── UpgradeWindow.xaml.cs │ ├── XmlHelpers.cs │ └── packages.config └── FileConverterExtension │ ├── ConversionPresetReference.cs │ ├── FileConverterExtension.cs │ ├── FileConverterExtension.csproj │ ├── FileConverterExtensionKey.snk │ ├── PathHelpers.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── Resources │ ├── ApplicationIcon.ico │ ├── FolderIcon.ico │ ├── PresetIcon.ico │ └── SettingsIcon.ico │ ├── Settings.StyleCop │ ├── XmlHelpers.cs │ ├── app.manifest │ └── packages.config ├── CHANGELOG.md ├── FileConverter.sln ├── FileConverter.sln.DotSettings ├── Installer ├── DebugInstaller.bat ├── Installer.wixproj ├── Languages.wxs ├── License.rtf └── Product.wxs ├── LICENSE.md ├── Middleware ├── Markdown.Xaml.dll ├── Ripper.dll ├── ffmpeg │ ├── x64 │ │ └── ffmpeg.exe │ └── x86 │ │ └── ffmpeg.exe ├── gs │ └── x86 │ │ ├── gsdll32.dll │ │ └── gswin32c.exe └── yeti.mmedia.dll ├── README.md ├── Resources ├── Colors.md ├── CompatibleFileFormats.svg ├── FFMPEG retro engineering.ods ├── FileConverterUsage-small.gif ├── FileConverterUsage.gif ├── Icons │ ├── ApplicationIcon-256x256.ico │ ├── ApplicationIcon.ico │ ├── ApplicationIcon.png │ ├── ApplicationIcon.svg │ ├── CancelIcon.png │ ├── CancelIcon.svg │ ├── DeleteIcon.ico │ ├── DeleteIcon.svg │ ├── DownIcon.ico │ ├── DownIcon.svg │ ├── DownloadIcon.png │ ├── DownloadIcon.svg │ ├── DuplicatePresetIcon.ico │ ├── DuplicatePresetIcon.svg │ ├── ExportIcon.ico │ ├── FailIcon.png │ ├── FailIcon.svg │ ├── FolderIcon.ico │ ├── FolderIcon.svg │ ├── ImportIcon.ico │ ├── LogIcon.png │ ├── LogIcon.svg │ ├── PresetIcon.ico │ ├── SettingsIcon.ico │ ├── SettingsIcon.svg │ ├── SuccessIcon.png │ ├── SuccessIcon.svg │ ├── UpIcon.ico │ └── UpIcon.svg ├── Installer │ ├── Banner.bmp │ ├── Banner.pdn │ ├── ErrorIcon.ico │ ├── ErrorIcon.svg │ ├── UI.bmp │ ├── UI.pdn │ ├── WarningIcon.ico │ └── WarningIcon.svg └── Screenshots │ ├── Screenshot1.png │ ├── Screenshot2.png │ └── Screenshot3.png ├── packages ├── Magick.NET-Q16-AnyCPU.7.0.5.502 │ ├── Copyright.txt │ ├── Magick.NET-Q16-AnyCPU.7.0.5.502.nupkg │ ├── Readme.txt │ └── lib │ │ ├── net20 │ │ ├── Magick.NET-Q16-AnyCPU.dll │ │ └── Magick.NET-Q16-AnyCPU.xml │ │ └── net40-client │ │ ├── Magick.NET-Q16-AnyCPU.dll │ │ └── Magick.NET-Q16-AnyCPU.xml ├── Microsoft.Office.Interop.Excel.15.0.4795.1000 │ ├── Microsoft.Office.Interop.Excel.15.0.4795.1000.nupkg │ └── lib │ │ └── net20 │ │ └── Microsoft.Office.Interop.Excel.dll ├── Microsoft.Office.Interop.PowerPoint.12.0.4518.1014 │ ├── Microsoft.Office.Interop.PowerPoint.12.0.4518.1014.nupkg │ └── lib │ │ └── net20 │ │ └── Microsoft.Office.Interop.PowerPoint.dll ├── Microsoft.Office.Interop.Word.15.0.4797.1003 │ ├── Microsoft.Office.Interop.Word.15.0.4797.1003.nupkg │ └── lib │ │ └── net20 │ │ └── Microsoft.Office.Interop.Word.dll ├── Office.12.0.0 │ ├── Office.12.0.0.nupkg │ └── lib │ │ └── net40 │ │ ├── Office.dll │ │ └── Office.xml ├── SharpShell.2.2.0.0 │ ├── SharpShell.2.2.0.0.nupkg │ └── lib │ │ └── net40 │ │ ├── SharpShell.dll │ │ ├── SharpShell.pdb │ │ └── SharpShell.xml ├── SharpShellTools.2.2.0.0 │ ├── SharpShellTools.2.2.0.0.nupkg │ └── lib │ │ ├── Apex.WinForms.dll │ │ ├── ServerManager.exe │ │ ├── ServerManager.pdb │ │ ├── SharpShell.dll │ │ ├── SharpShell.pdb │ │ ├── SharpShell.xml │ │ └── srm.exe └── WpfAnimatedGif.1.4.14 │ ├── WpfAnimatedGif.1.4.14.nupkg │ └── lib │ └── net │ ├── WpfAnimatedGif.dll │ └── WpfAnimatedGif.xml ├── version (x86).xml └── version.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/FileConverter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/App.config -------------------------------------------------------------------------------- /Application/FileConverter/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Application.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Application.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Application.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/ApplicationTerminateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ApplicationTerminateArgs.cs -------------------------------------------------------------------------------- /Application/FileConverter/Controls/ConversionJobControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/ConversionJobControl.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Controls/ConversionJobControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/ConversionJobControl.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Controls/EncodingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/EncodingMode.cs -------------------------------------------------------------------------------- /Application/FileConverter/Controls/EncodingQualitySliderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Controls/EncodingQualitySliderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Controls/IconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Controls/IconButton.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionFlags.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJobFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJobFactory.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_Excel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_Excel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_ExtractCDA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_ExtractCDA.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.Converters.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_FFMPEG.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_Gif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_Gif.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_Ico.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_Ico.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_ImageMagick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_ImageMagick.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_Office.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_Office.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_PowerPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_PowerPoint.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/ConversionJob_Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/ConversionJob_Word.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionJobs/VideoEncodingSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionJobs/VideoEncodingSpeed.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionPreset/ConversionPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionPreset/ConversionPreset.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionPreset/ConversionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionPreset/ConversionSettings.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionPreset/ConversionSettingsOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionPreset/ConversionSettingsOverride.cs -------------------------------------------------------------------------------- /Application/FileConverter/ConversionPreset/IConversionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ConversionPreset/IConversionSettings.cs -------------------------------------------------------------------------------- /Application/FileConverter/Diagnostics/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Diagnostics/Debug.cs -------------------------------------------------------------------------------- /Application/FileConverter/Diagnostics/DiagnosticsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Diagnostics/DiagnosticsData.cs -------------------------------------------------------------------------------- /Application/FileConverter/FileConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/FileConverter.csproj -------------------------------------------------------------------------------- /Application/FileConverter/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Helpers.cs -------------------------------------------------------------------------------- /Application/FileConverter/IXmlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/IXmlSerializable.cs -------------------------------------------------------------------------------- /Application/FileConverter/InputPostConversionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/InputPostConversionAction.cs -------------------------------------------------------------------------------- /Application/FileConverter/OutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/OutputType.cs -------------------------------------------------------------------------------- /Application/FileConverter/Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Pages.cs -------------------------------------------------------------------------------- /Application/FileConverter/PathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/PathHelpers.cs -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Annotations.cs -------------------------------------------------------------------------------- /Application/FileConverter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.de.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.en.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.en.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.es-ES.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.fr-FR.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.pt-BR.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.pt.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Resources.resx -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Application/FileConverter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Properties/Settings.settings -------------------------------------------------------------------------------- /Application/FileConverter/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Registry.cs -------------------------------------------------------------------------------- /Application/FileConverter/Resources/ApplicationIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/ApplicationIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/CancelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/CancelIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/DeleteIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/DeleteIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/DownIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/DownIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/DownloadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/DownloadIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/DuplicatePresetIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/DuplicatePresetIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/ExportIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/ExportIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/FailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/FailIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/FileConverterUsage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/FileConverterUsage.gif -------------------------------------------------------------------------------- /Application/FileConverter/Resources/FolderIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/FolderIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/GitHub-Documentation-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/GitHub-Documentation-Icon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/GitHub-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/GitHub-Icon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/GitHub-Issue-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/GitHub-Issue-Icon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/ImportIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/ImportIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/LogIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/LogIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/PaypalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/PaypalIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/PresetIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/PresetIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/SayThanksIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/SayThanksIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/SettingsIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/SettingsIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/SuccessIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/SuccessIcon.png -------------------------------------------------------------------------------- /Application/FileConverter/Resources/UpIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/UpIcon.ico -------------------------------------------------------------------------------- /Application/FileConverter/Resources/WebSite-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Resources/WebSite-Icon.png -------------------------------------------------------------------------------- /Application/FileConverter/SampleData/ConversionJobSampleData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/SampleData/ConversionJobSampleData.xaml -------------------------------------------------------------------------------- /Application/FileConverter/SampleData/SettingsSampleData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/SampleData/SettingsSampleData.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Services/ConversionJobsTerminatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/ConversionJobsTerminatedEventArgs.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/ConversionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/ConversionService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/IConversionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/IConversionService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/INavigationService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/ISettingsService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/IUpgradeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/IUpgradeService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/NavigationService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/SettingsService.Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/SettingsService.Migration.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/SettingsService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/UpgradeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/UpgradeService.cs -------------------------------------------------------------------------------- /Application/FileConverter/Services/UpgradeVersionDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Services/UpgradeVersionDescription.cs -------------------------------------------------------------------------------- /Application/FileConverter/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Settings.StyleCop -------------------------------------------------------------------------------- /Application/FileConverter/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Settings.cs -------------------------------------------------------------------------------- /Application/FileConverter/Settings.default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Settings.default.xml -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ApplicationVersionToApplicationName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ApplicationVersionToApplicationName.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/BitrateToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/BitrateToString.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ChangelogConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ChangelogConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionJobToEstimatedRemainingDuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionJobToEstimatedRemainingDuration.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionJobsToProgressState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionJobsToProgressState.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionJobsToProgressValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionJobsToProgressValue.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionSettingsRelevant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionSettingsRelevant.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionSettingsToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionSettingsToString.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/ConversionStateToBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/ConversionStateToBrush.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/FileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/FileNameConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/BoolInverterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/BoolInverterConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/BoolToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/BoolToVisibility.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/CollectionContainsElementToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/CollectionContainsElementToBool.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/CultureInfoToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/CultureInfoToStringConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/DoubleToTimeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/DoubleToTimeString.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/EqualsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/EqualsConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/FormatStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/FormatStringConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/IcoFileSizeSelectorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/IcoFileSizeSelectorConverter.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/ObjectToLocalizedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/ObjectToLocalizedString.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/StringToEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/StringToEnum.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/StringToValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/StringToValueType.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/ValueConverterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/ValueConverterGroup.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/Generic/ValueToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/Generic/ValueToString.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/InputTypesToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/InputTypesToBool.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/OutputTypeEnumToViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/OutputTypeEnumToViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ValueConverters/OutputTypeToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ValueConverters/OutputTypeToVisibility.cs -------------------------------------------------------------------------------- /Application/FileConverter/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Version.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/HelpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/HelpViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/InputExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/InputExtension.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/InputExtensionCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/InputExtensionCategory.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/OutputTypeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/OutputTypeViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/PresetNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/PresetNode.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/UpgradeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/UpgradeViewModel.cs -------------------------------------------------------------------------------- /Application/FileConverter/ViewModels/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/ViewModels/ViewModelLocator.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/BindableSelectedItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/BindableSelectedItemBehavior.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/DiagnosticsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/DiagnosticsWindow.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/DiagnosticsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/DiagnosticsWindow.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/DragDropExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/DragDropExtension.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/HelpWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/HelpWindow.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/HelpWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/HelpWindow.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/MainWindow.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/Resources/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/Resources/Colors.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/Resources/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/Resources/CustomStyles.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/Views/UpgradeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/UpgradeWindow.xaml -------------------------------------------------------------------------------- /Application/FileConverter/Views/UpgradeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/Views/UpgradeWindow.xaml.cs -------------------------------------------------------------------------------- /Application/FileConverter/XmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/XmlHelpers.cs -------------------------------------------------------------------------------- /Application/FileConverter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverter/packages.config -------------------------------------------------------------------------------- /Application/FileConverterExtension/ConversionPresetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/ConversionPresetReference.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/FileConverterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/FileConverterExtension.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/FileConverterExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/FileConverterExtension.csproj -------------------------------------------------------------------------------- /Application/FileConverterExtension/FileConverterExtensionKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/FileConverterExtensionKey.snk -------------------------------------------------------------------------------- /Application/FileConverterExtension/PathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/PathHelpers.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Properties/Resources.resx -------------------------------------------------------------------------------- /Application/FileConverterExtension/Resources/ApplicationIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Resources/ApplicationIcon.ico -------------------------------------------------------------------------------- /Application/FileConverterExtension/Resources/FolderIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Resources/FolderIcon.ico -------------------------------------------------------------------------------- /Application/FileConverterExtension/Resources/PresetIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Resources/PresetIcon.ico -------------------------------------------------------------------------------- /Application/FileConverterExtension/Resources/SettingsIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Resources/SettingsIcon.ico -------------------------------------------------------------------------------- /Application/FileConverterExtension/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/Settings.StyleCop -------------------------------------------------------------------------------- /Application/FileConverterExtension/XmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/XmlHelpers.cs -------------------------------------------------------------------------------- /Application/FileConverterExtension/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/app.manifest -------------------------------------------------------------------------------- /Application/FileConverterExtension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Application/FileConverterExtension/packages.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FileConverter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/FileConverter.sln -------------------------------------------------------------------------------- /FileConverter.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/FileConverter.sln.DotSettings -------------------------------------------------------------------------------- /Installer/DebugInstaller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Installer/DebugInstaller.bat -------------------------------------------------------------------------------- /Installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Installer/Installer.wixproj -------------------------------------------------------------------------------- /Installer/Languages.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Installer/Languages.wxs -------------------------------------------------------------------------------- /Installer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Installer/License.rtf -------------------------------------------------------------------------------- /Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Installer/Product.wxs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Middleware/Markdown.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/Markdown.Xaml.dll -------------------------------------------------------------------------------- /Middleware/Ripper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/Ripper.dll -------------------------------------------------------------------------------- /Middleware/ffmpeg/x64/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/ffmpeg/x64/ffmpeg.exe -------------------------------------------------------------------------------- /Middleware/ffmpeg/x86/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/ffmpeg/x86/ffmpeg.exe -------------------------------------------------------------------------------- /Middleware/gs/x86/gsdll32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/gs/x86/gsdll32.dll -------------------------------------------------------------------------------- /Middleware/gs/x86/gswin32c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/gs/x86/gswin32c.exe -------------------------------------------------------------------------------- /Middleware/yeti.mmedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Middleware/yeti.mmedia.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Colors.md -------------------------------------------------------------------------------- /Resources/CompatibleFileFormats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/CompatibleFileFormats.svg -------------------------------------------------------------------------------- /Resources/FFMPEG retro engineering.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/FFMPEG retro engineering.ods -------------------------------------------------------------------------------- /Resources/FileConverterUsage-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/FileConverterUsage-small.gif -------------------------------------------------------------------------------- /Resources/FileConverterUsage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/FileConverterUsage.gif -------------------------------------------------------------------------------- /Resources/Icons/ApplicationIcon-256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ApplicationIcon-256x256.ico -------------------------------------------------------------------------------- /Resources/Icons/ApplicationIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ApplicationIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ApplicationIcon.png -------------------------------------------------------------------------------- /Resources/Icons/ApplicationIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ApplicationIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/CancelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/CancelIcon.png -------------------------------------------------------------------------------- /Resources/Icons/CancelIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/CancelIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/DeleteIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DeleteIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/DeleteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DeleteIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/DownIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DownIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/DownIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DownIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/DownloadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DownloadIcon.png -------------------------------------------------------------------------------- /Resources/Icons/DownloadIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DownloadIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/DuplicatePresetIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DuplicatePresetIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/DuplicatePresetIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/DuplicatePresetIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/ExportIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ExportIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/FailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/FailIcon.png -------------------------------------------------------------------------------- /Resources/Icons/FailIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/FailIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/FolderIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/FolderIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/FolderIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/FolderIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/ImportIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/ImportIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/LogIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/LogIcon.png -------------------------------------------------------------------------------- /Resources/Icons/LogIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/LogIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/PresetIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/PresetIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/SettingsIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/SettingsIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/SettingsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/SettingsIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/SuccessIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/SuccessIcon.png -------------------------------------------------------------------------------- /Resources/Icons/SuccessIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/SuccessIcon.svg -------------------------------------------------------------------------------- /Resources/Icons/UpIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/UpIcon.ico -------------------------------------------------------------------------------- /Resources/Icons/UpIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Icons/UpIcon.svg -------------------------------------------------------------------------------- /Resources/Installer/Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/Banner.bmp -------------------------------------------------------------------------------- /Resources/Installer/Banner.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/Banner.pdn -------------------------------------------------------------------------------- /Resources/Installer/ErrorIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/ErrorIcon.ico -------------------------------------------------------------------------------- /Resources/Installer/ErrorIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/ErrorIcon.svg -------------------------------------------------------------------------------- /Resources/Installer/UI.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/UI.bmp -------------------------------------------------------------------------------- /Resources/Installer/UI.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/UI.pdn -------------------------------------------------------------------------------- /Resources/Installer/WarningIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/WarningIcon.ico -------------------------------------------------------------------------------- /Resources/Installer/WarningIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Installer/WarningIcon.svg -------------------------------------------------------------------------------- /Resources/Screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Screenshots/Screenshot1.png -------------------------------------------------------------------------------- /Resources/Screenshots/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Screenshots/Screenshot2.png -------------------------------------------------------------------------------- /Resources/Screenshots/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/Resources/Screenshots/Screenshot3.png -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Copyright.txt -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Magick.NET-Q16-AnyCPU.7.0.5.502.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Magick.NET-Q16-AnyCPU.7.0.5.502.nupkg -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/Readme.txt -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net20/Magick.NET-Q16-AnyCPU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net20/Magick.NET-Q16-AnyCPU.dll -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net20/Magick.NET-Q16-AnyCPU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net20/Magick.NET-Q16-AnyCPU.xml -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net40-client/Magick.NET-Q16-AnyCPU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net40-client/Magick.NET-Q16-AnyCPU.dll -------------------------------------------------------------------------------- /packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net40-client/Magick.NET-Q16-AnyCPU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Magick.NET-Q16-AnyCPU.7.0.5.502/lib/net40-client/Magick.NET-Q16-AnyCPU.xml -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.Excel.15.0.4795.1000/Microsoft.Office.Interop.Excel.15.0.4795.1000.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.Excel.15.0.4795.1000/Microsoft.Office.Interop.Excel.15.0.4795.1000.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.Excel.15.0.4795.1000/lib/net20/Microsoft.Office.Interop.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.Excel.15.0.4795.1000/lib/net20/Microsoft.Office.Interop.Excel.dll -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014/lib/net20/Microsoft.Office.Interop.PowerPoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.PowerPoint.12.0.4518.1014/lib/net20/Microsoft.Office.Interop.PowerPoint.dll -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.Word.15.0.4797.1003/Microsoft.Office.Interop.Word.15.0.4797.1003.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.Word.15.0.4797.1003/Microsoft.Office.Interop.Word.15.0.4797.1003.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Office.Interop.Word.15.0.4797.1003/lib/net20/Microsoft.Office.Interop.Word.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Microsoft.Office.Interop.Word.15.0.4797.1003/lib/net20/Microsoft.Office.Interop.Word.dll -------------------------------------------------------------------------------- /packages/Office.12.0.0/Office.12.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Office.12.0.0/Office.12.0.0.nupkg -------------------------------------------------------------------------------- /packages/Office.12.0.0/lib/net40/Office.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Office.12.0.0/lib/net40/Office.dll -------------------------------------------------------------------------------- /packages/Office.12.0.0/lib/net40/Office.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/Office.12.0.0/lib/net40/Office.xml -------------------------------------------------------------------------------- /packages/SharpShell.2.2.0.0/SharpShell.2.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShell.2.2.0.0/SharpShell.2.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/SharpShell.2.2.0.0/lib/net40/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShell.2.2.0.0/lib/net40/SharpShell.dll -------------------------------------------------------------------------------- /packages/SharpShell.2.2.0.0/lib/net40/SharpShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShell.2.2.0.0/lib/net40/SharpShell.pdb -------------------------------------------------------------------------------- /packages/SharpShell.2.2.0.0/lib/net40/SharpShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShell.2.2.0.0/lib/net40/SharpShell.xml -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/SharpShellTools.2.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/SharpShellTools.2.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/Apex.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/Apex.WinForms.dll -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/ServerManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/ServerManager.exe -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/ServerManager.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/ServerManager.pdb -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/SharpShell.dll -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/SharpShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/SharpShell.pdb -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/SharpShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/SharpShell.xml -------------------------------------------------------------------------------- /packages/SharpShellTools.2.2.0.0/lib/srm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/SharpShellTools.2.2.0.0/lib/srm.exe -------------------------------------------------------------------------------- /packages/WpfAnimatedGif.1.4.14/WpfAnimatedGif.1.4.14.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/WpfAnimatedGif.1.4.14/WpfAnimatedGif.1.4.14.nupkg -------------------------------------------------------------------------------- /packages/WpfAnimatedGif.1.4.14/lib/net/WpfAnimatedGif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/WpfAnimatedGif.1.4.14/lib/net/WpfAnimatedGif.dll -------------------------------------------------------------------------------- /packages/WpfAnimatedGif.1.4.14/lib/net/WpfAnimatedGif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/packages/WpfAnimatedGif.1.4.14/lib/net/WpfAnimatedGif.xml -------------------------------------------------------------------------------- /version (x86).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/version (x86).xml -------------------------------------------------------------------------------- /version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterofobzene/FileConverter-H265/HEAD/version.xml --------------------------------------------------------------------------------