├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── crash_report.yml │ └── feature_request.yml └── workflows │ └── crowdin.yml ├── .gitignore ├── Directory.Packages.props ├── DownloadAndCopyResx.ps1 ├── Installer ├── InstallerSplash.png ├── VidCoderRar.conf └── VidCoder_Setup.ico ├── Lib ├── HandBrake.Interop.dll ├── HandBrake.Interop.pdb └── hb.dll ├── License.txt ├── SourceImages └── VidCoder_Icon_NoShadow.png ├── ThirdPartyLicenses.txt ├── UpgradeLog.htm ├── VidCoder.sln ├── VidCoder.sln.DotSettings ├── VidCoder ├── App.xaml ├── App.xaml.cs ├── Automation │ ├── AutomationHost.cs │ └── VidCoderAutomation.cs ├── Behaviors │ └── IgnoreMouseWheelBehavior.cs ├── Constants.cs ├── Controls │ ├── AvailabilityIndicator.xaml │ ├── AvailabilityIndicator.xaml.cs │ ├── EnhancedListView.cs │ ├── IListItemViewModel.cs │ ├── InlineWarning.xaml │ ├── InlineWarning.xaml.cs │ ├── NumberBox.xaml │ ├── NumberBox.xaml.cs │ ├── PathSegmentSet.cs │ ├── PathTextBlock.xaml │ ├── PathTextBlock.xaml.cs │ ├── PickerList.xaml │ ├── PickerList.xaml.cs │ ├── PresetComboBox.cs │ ├── PresetTreeView.cs │ ├── PresetTreeViewContainer.xaml │ ├── PresetTreeViewContainer.xaml.cs │ ├── RangeBar.xaml │ ├── RangeBar.xaml.cs │ ├── SlotSeekBar.xaml │ ├── SlotSeekBar.xaml.cs │ ├── SplitButton.xaml │ ├── SplitButton.xaml.cs │ ├── TimeBox.xaml │ ├── TimeBox.xaml.cs │ ├── ToolWindowTitleBar.xaml │ ├── ToolWindowTitleBar.xaml.cs │ ├── VideoSeekBar.xaml │ └── VideoSeekBar.xaml.cs ├── Converters │ ├── BoolRadioConverter.cs │ ├── ChapterVMConverter.cs │ ├── DoubleDisplayConverter.cs │ ├── EnumBoolConverter.cs │ ├── EnumBoolInverseConverter.cs │ ├── EnumVisibilityConverter.cs │ ├── EnumVisibilityInverseConverter.cs │ ├── FramerateDisplayConverter.cs │ ├── IntVisibilityConverter.cs │ ├── InverseBoolConverter.cs │ ├── PercentDisplayConverter.cs │ ├── SampleRateDisplayConverter.cs │ └── VisibilityConverter.cs ├── DragDrop │ ├── DragDropHelper.cs │ ├── DragDropUtilities.cs │ ├── DraggedAdorner.cs │ ├── IDragItem.cs │ ├── InsertionAdorner.cs │ └── MoveToFolderAdorner.cs ├── Encode_Complete.wav ├── EnumDisplayer.cs ├── EnumStringConverter.cs ├── EventArgs.cs ├── Extensions │ ├── ExtensionDataDictionaryExtensions.cs │ ├── JsonScanObjectExtensions.cs │ ├── LogEntryExtensions.cs │ ├── PresetExtensions.cs │ ├── PreviewFrameExtensions.cs │ ├── RectExtensions.cs │ ├── SubtitleBurnInSelectionExtensions.cs │ ├── TimeSpanExtensions.cs │ ├── TitleExtensions.cs │ ├── VersionExtensions.cs │ ├── WatchedFileStatusExtensions.cs │ └── WindowExtensions.cs ├── IDialog.cs ├── Icons │ ├── AddToQueue.png │ ├── Audio.png │ ├── ChapterMarkers.png │ ├── Clear.png │ ├── ClearFailed.png │ ├── ClearSucceeded.png │ ├── Compare.png │ ├── Disc64.png │ ├── Empty.png │ ├── Encode.png │ ├── EncodingSettings.png │ ├── Eye.png │ ├── File │ │ ├── VidCoderPreset.ico │ │ └── VidCoderQueue.ico │ ├── Help.png │ ├── ImportExport.png │ ├── Options.png │ ├── Pause.png │ ├── Picker.png │ ├── Preview64.png │ ├── Reload.png │ ├── Remove.png │ ├── Splash.png │ ├── Stop.png │ ├── Subtitles.png │ ├── VidCoder.png │ ├── VidCoder32.png │ ├── VolumeMute.png │ ├── VolumeOn.png │ ├── Windows.png │ ├── add_folder.png │ ├── bludisc.png │ ├── blue_play_80.png │ ├── copy.png │ ├── crop_bg_tile_12x12.png │ ├── delete.png │ ├── delete_folder.png │ ├── disc.png │ ├── dvd_folder.png │ ├── edit_16x16.png │ ├── edit_2.png │ ├── failed.png │ ├── folder.png │ ├── play_clip.png │ ├── play_small.png │ ├── redo.png │ ├── rename_folder.png │ ├── rotate_180.png │ ├── rotate_90_ccw.png │ ├── rotate_90_cw.png │ ├── save.png │ ├── succeeded.png │ ├── text_file_16x16.png │ ├── undo_16x16.png │ ├── video-file.png │ ├── video_files_folder.png │ ├── warning.png │ └── win7foldericon.png ├── LayoutPanels │ └── TruncatePanel.cs ├── Model │ ├── AppThemeChoice.cs │ ├── AudioSelectionMode.cs │ ├── CharCode.cs │ ├── ComboChoice.cs │ ├── ComboChoiceT.cs │ ├── Config │ │ ├── Config.cs │ │ ├── Config.tt │ │ ├── Config.txt │ │ ├── ConfigObservable.cs │ │ └── CustomConfig.cs │ ├── Database.cs │ ├── DragDropOrder.cs │ ├── DriveInformation.cs │ ├── EncodeCompleteAction.cs │ ├── EncodeCompleteActionPersisted.cs │ ├── EncodeCompleteActionType.cs │ ├── EncodeCompleteReason.cs │ ├── EncodeCompleteTrigger.cs │ ├── EncodeJobPersistGroup.cs │ ├── EncodeJobStorage.cs │ ├── EncodeJobWithMetadata.cs │ ├── EncodeJobsXml.cs │ ├── EncodeResult.cs │ ├── EncodeResultStatus.cs │ ├── FileConflictResolution.cs │ ├── FileQueueCheckResult.cs │ ├── HardwarePool.cs │ ├── IPreviewFrame.cs │ ├── JobCompletedEventArgs.cs │ ├── JobInstructions.cs │ ├── JobPreset.cs │ ├── JobWork.cs │ ├── LogChunk.cs │ ├── LogColor.cs │ ├── LogEntry.cs │ ├── LogOperationType.cs │ ├── LogSource.cs │ ├── LogType.cs │ ├── LoggedEntry.cs │ ├── PartFileNaming.cs │ ├── PendingScan.cs │ ├── Picker.cs │ ├── PickerStorage.cs │ ├── PickerTimeRangeMode.cs │ ├── Players │ │ ├── IVideoPlayer.cs │ │ ├── MpchcPlayer.cs │ │ ├── Players.cs │ │ ├── VideoPlayerBase.cs │ │ └── VlcPlayer.cs │ ├── PresetFolder.cs │ ├── PresetFolderStorage.cs │ ├── PresetStorage.cs │ ├── PresetWrapper.cs │ ├── PreviewControls.cs │ ├── PreviewDisplay.cs │ ├── PreviewEncodeState.cs │ ├── PreviewImageJob.cs │ ├── PreviewMainDisplay.cs │ ├── RangeFocusEventArgs.cs │ ├── SaveImageJob.cs │ ├── ScanResult.cs │ ├── Side.cs │ ├── SourceFileRemoval.cs │ ├── SourceFileRemovalTiming.cs │ ├── SourceOption.cs │ ├── SourcePath.cs │ ├── SubtitleBurnInSelection.cs │ ├── SubtitleSelectionMode.cs │ ├── TitleCapitalizationChoice.cs │ ├── TitleType.cs │ ├── UpdateInfo.cs │ ├── UpdateMode.cs │ ├── UpdateState.cs │ ├── VidCoderInstallType.cs │ ├── VideoSource.cs │ ├── VideoSourceMetadata.cs │ ├── VideoSourceState.cs │ ├── WatchedFileStatusLive.cs │ ├── WatcherProcessStatus.cs │ ├── WhenFileExists.cs │ ├── WindowPlacer │ │ ├── WindowPlacerLocation.cs │ │ └── WindowPosition.cs │ └── WordBreakCharacter.cs ├── Program.cs ├── Properties │ └── PublishProfiles │ │ ├── InstallerProfile.pubxml │ │ └── PortableProfile.pubxml ├── Resources │ ├── ChapterMarkersRes.Designer.cs │ ├── ChapterMarkersRes.resx │ ├── CommonRes.Designer.cs │ ├── CommonRes.resx │ ├── EncodeDetailsRes.Designer.cs │ ├── EncodeDetailsRes.resx │ ├── EncodingRes.Designer.cs │ ├── EncodingRes.resx │ ├── EnumsRes.Designer.cs │ ├── EnumsRes.resx │ ├── LogRes.Designer.cs │ ├── LogRes.resx │ ├── MainRes.Designer.cs │ ├── MainRes.resx │ ├── MiscRes.Designer.cs │ ├── MiscRes.resx │ ├── OptionsRes.Designer.cs │ ├── OptionsRes.resx │ ├── PickerRes.Designer.cs │ ├── PickerRes.resx │ ├── PreviewRes.Designer.cs │ ├── PreviewRes.resx │ ├── QueueTitlesRes.Designer.cs │ ├── QueueTitlesRes.resx │ ├── SubtitleRes.Designer.cs │ ├── SubtitleRes.resx │ ├── Translations │ │ ├── ChapterMarkersRes.ar.resx │ │ ├── ChapterMarkersRes.bn.resx │ │ ├── ChapterMarkersRes.br.resx │ │ ├── ChapterMarkersRes.bs.resx │ │ ├── ChapterMarkersRes.ca.resx │ │ ├── ChapterMarkersRes.cs.resx │ │ ├── ChapterMarkersRes.da.resx │ │ ├── ChapterMarkersRes.de.resx │ │ ├── ChapterMarkersRes.el.resx │ │ ├── ChapterMarkersRes.es.resx │ │ ├── ChapterMarkersRes.eu.resx │ │ ├── ChapterMarkersRes.fa.resx │ │ ├── ChapterMarkersRes.fi.resx │ │ ├── ChapterMarkersRes.fr.resx │ │ ├── ChapterMarkersRes.he.resx │ │ ├── ChapterMarkersRes.hr.resx │ │ ├── ChapterMarkersRes.hu.resx │ │ ├── ChapterMarkersRes.id.resx │ │ ├── ChapterMarkersRes.it.resx │ │ ├── ChapterMarkersRes.ja.resx │ │ ├── ChapterMarkersRes.ka.resx │ │ ├── ChapterMarkersRes.ko.resx │ │ ├── ChapterMarkersRes.nl.resx │ │ ├── ChapterMarkersRes.no.resx │ │ ├── ChapterMarkersRes.pl.resx │ │ ├── ChapterMarkersRes.pt-BR.resx │ │ ├── ChapterMarkersRes.pt.resx │ │ ├── ChapterMarkersRes.ro.resx │ │ ├── ChapterMarkersRes.ru.resx │ │ ├── ChapterMarkersRes.sr.resx │ │ ├── ChapterMarkersRes.sv.resx │ │ ├── ChapterMarkersRes.tr.resx │ │ ├── ChapterMarkersRes.uk.resx │ │ ├── ChapterMarkersRes.vi.resx │ │ ├── ChapterMarkersRes.zh-Hant.resx │ │ ├── ChapterMarkersRes.zh.resx │ │ ├── CommonRes.ar.resx │ │ ├── CommonRes.bn.resx │ │ ├── CommonRes.br.resx │ │ ├── CommonRes.bs.resx │ │ ├── CommonRes.ca.resx │ │ ├── CommonRes.cs.resx │ │ ├── CommonRes.da.resx │ │ ├── CommonRes.de.resx │ │ ├── CommonRes.el.resx │ │ ├── CommonRes.es.resx │ │ ├── CommonRes.eu.resx │ │ ├── CommonRes.fa.resx │ │ ├── CommonRes.fi.resx │ │ ├── CommonRes.fr.resx │ │ ├── CommonRes.he.resx │ │ ├── CommonRes.hr.resx │ │ ├── CommonRes.hu.resx │ │ ├── CommonRes.id.resx │ │ ├── CommonRes.it.resx │ │ ├── CommonRes.ja.resx │ │ ├── CommonRes.ka.resx │ │ ├── CommonRes.ko.resx │ │ ├── CommonRes.nl.resx │ │ ├── CommonRes.no.resx │ │ ├── CommonRes.pl.resx │ │ ├── CommonRes.pt-BR.resx │ │ ├── CommonRes.pt.resx │ │ ├── CommonRes.ro.resx │ │ ├── CommonRes.ru.resx │ │ ├── CommonRes.sr.resx │ │ ├── CommonRes.sv.resx │ │ ├── CommonRes.tr.resx │ │ ├── CommonRes.uk.resx │ │ ├── CommonRes.vi.resx │ │ ├── CommonRes.zh-Hant.resx │ │ ├── CommonRes.zh.resx │ │ ├── EncodeDetailsRes.ar.resx │ │ ├── EncodeDetailsRes.bn.resx │ │ ├── EncodeDetailsRes.br.resx │ │ ├── EncodeDetailsRes.bs.resx │ │ ├── EncodeDetailsRes.ca.resx │ │ ├── EncodeDetailsRes.cs.resx │ │ ├── EncodeDetailsRes.da.resx │ │ ├── EncodeDetailsRes.de.resx │ │ ├── EncodeDetailsRes.el.resx │ │ ├── EncodeDetailsRes.es.resx │ │ ├── EncodeDetailsRes.eu.resx │ │ ├── EncodeDetailsRes.fa.resx │ │ ├── EncodeDetailsRes.fi.resx │ │ ├── EncodeDetailsRes.fr.resx │ │ ├── EncodeDetailsRes.he.resx │ │ ├── EncodeDetailsRes.hr.resx │ │ ├── EncodeDetailsRes.hu.resx │ │ ├── EncodeDetailsRes.id.resx │ │ ├── EncodeDetailsRes.it.resx │ │ ├── EncodeDetailsRes.ja.resx │ │ ├── EncodeDetailsRes.ka.resx │ │ ├── EncodeDetailsRes.ko.resx │ │ ├── EncodeDetailsRes.nl.resx │ │ ├── EncodeDetailsRes.no.resx │ │ ├── EncodeDetailsRes.pl.resx │ │ ├── EncodeDetailsRes.pt-BR.resx │ │ ├── EncodeDetailsRes.pt.resx │ │ ├── EncodeDetailsRes.ro.resx │ │ ├── EncodeDetailsRes.ru.resx │ │ ├── EncodeDetailsRes.sr.resx │ │ ├── EncodeDetailsRes.sv.resx │ │ ├── EncodeDetailsRes.tr.resx │ │ ├── EncodeDetailsRes.uk.resx │ │ ├── EncodeDetailsRes.vi.resx │ │ ├── EncodeDetailsRes.zh-Hant.resx │ │ ├── EncodeDetailsRes.zh.resx │ │ ├── EncodingRes.ar.resx │ │ ├── EncodingRes.bn.resx │ │ ├── EncodingRes.br.resx │ │ ├── EncodingRes.bs.resx │ │ ├── EncodingRes.ca.resx │ │ ├── EncodingRes.cs.resx │ │ ├── EncodingRes.da.resx │ │ ├── EncodingRes.de.resx │ │ ├── EncodingRes.el.resx │ │ ├── EncodingRes.es.resx │ │ ├── EncodingRes.eu.resx │ │ ├── EncodingRes.fa.resx │ │ ├── EncodingRes.fi.resx │ │ ├── EncodingRes.fr.resx │ │ ├── EncodingRes.he.resx │ │ ├── EncodingRes.hr.resx │ │ ├── EncodingRes.hu.resx │ │ ├── EncodingRes.id.resx │ │ ├── EncodingRes.it.resx │ │ ├── EncodingRes.ja.resx │ │ ├── EncodingRes.ka.resx │ │ ├── EncodingRes.ko.resx │ │ ├── EncodingRes.nl.resx │ │ ├── EncodingRes.no.resx │ │ ├── EncodingRes.pl.resx │ │ ├── EncodingRes.pt-BR.resx │ │ ├── EncodingRes.pt.resx │ │ ├── EncodingRes.ro.resx │ │ ├── EncodingRes.ru.resx │ │ ├── EncodingRes.sr.resx │ │ ├── EncodingRes.sv.resx │ │ ├── EncodingRes.tr.resx │ │ ├── EncodingRes.uk.resx │ │ ├── EncodingRes.vi.resx │ │ ├── EncodingRes.zh-Hant.resx │ │ ├── EncodingRes.zh.resx │ │ ├── EnumsRes.ar.resx │ │ ├── EnumsRes.bn.resx │ │ ├── EnumsRes.br.resx │ │ ├── EnumsRes.bs.resx │ │ ├── EnumsRes.ca.resx │ │ ├── EnumsRes.cs.resx │ │ ├── EnumsRes.da.resx │ │ ├── EnumsRes.de.resx │ │ ├── EnumsRes.el.resx │ │ ├── EnumsRes.es.resx │ │ ├── EnumsRes.eu.resx │ │ ├── EnumsRes.fa.resx │ │ ├── EnumsRes.fi.resx │ │ ├── EnumsRes.fr.resx │ │ ├── EnumsRes.he.resx │ │ ├── EnumsRes.hr.resx │ │ ├── EnumsRes.hu.resx │ │ ├── EnumsRes.id.resx │ │ ├── EnumsRes.it.resx │ │ ├── EnumsRes.ja.resx │ │ ├── EnumsRes.ka.resx │ │ ├── EnumsRes.ko.resx │ │ ├── EnumsRes.nl.resx │ │ ├── EnumsRes.no.resx │ │ ├── EnumsRes.pl.resx │ │ ├── EnumsRes.pt-BR.resx │ │ ├── EnumsRes.pt.resx │ │ ├── EnumsRes.ro.resx │ │ ├── EnumsRes.ru.resx │ │ ├── EnumsRes.sr.resx │ │ ├── EnumsRes.sv.resx │ │ ├── EnumsRes.tr.resx │ │ ├── EnumsRes.uk.resx │ │ ├── EnumsRes.vi.resx │ │ ├── EnumsRes.zh-Hant.resx │ │ ├── EnumsRes.zh.resx │ │ ├── LogRes.ar.resx │ │ ├── LogRes.bn.resx │ │ ├── LogRes.br.resx │ │ ├── LogRes.bs.resx │ │ ├── LogRes.ca.resx │ │ ├── LogRes.cs.resx │ │ ├── LogRes.da.resx │ │ ├── LogRes.de.resx │ │ ├── LogRes.el.resx │ │ ├── LogRes.es.resx │ │ ├── LogRes.eu.resx │ │ ├── LogRes.fa.resx │ │ ├── LogRes.fi.resx │ │ ├── LogRes.fr.resx │ │ ├── LogRes.he.resx │ │ ├── LogRes.hr.resx │ │ ├── LogRes.hu.resx │ │ ├── LogRes.id.resx │ │ ├── LogRes.it.resx │ │ ├── LogRes.ja.resx │ │ ├── LogRes.ka.resx │ │ ├── LogRes.ko.resx │ │ ├── LogRes.nl.resx │ │ ├── LogRes.no.resx │ │ ├── LogRes.pl.resx │ │ ├── LogRes.pt-BR.resx │ │ ├── LogRes.pt.resx │ │ ├── LogRes.ro.resx │ │ ├── LogRes.ru.resx │ │ ├── LogRes.sr.resx │ │ ├── LogRes.sv.resx │ │ ├── LogRes.tr.resx │ │ ├── LogRes.uk.resx │ │ ├── LogRes.vi.resx │ │ ├── LogRes.zh-Hant.resx │ │ ├── LogRes.zh.resx │ │ ├── MainRes.ar.resx │ │ ├── MainRes.bn.resx │ │ ├── MainRes.br.resx │ │ ├── MainRes.bs.resx │ │ ├── MainRes.ca.resx │ │ ├── MainRes.cs.resx │ │ ├── MainRes.da.resx │ │ ├── MainRes.de.resx │ │ ├── MainRes.el.resx │ │ ├── MainRes.es.resx │ │ ├── MainRes.eu.resx │ │ ├── MainRes.fa.resx │ │ ├── MainRes.fi.resx │ │ ├── MainRes.fr.resx │ │ ├── MainRes.he.resx │ │ ├── MainRes.hr.resx │ │ ├── MainRes.hu.resx │ │ ├── MainRes.id.resx │ │ ├── MainRes.it.resx │ │ ├── MainRes.ja.resx │ │ ├── MainRes.ka.resx │ │ ├── MainRes.ko.resx │ │ ├── MainRes.nl.resx │ │ ├── MainRes.no.resx │ │ ├── MainRes.pl.resx │ │ ├── MainRes.pt-BR.resx │ │ ├── MainRes.pt.resx │ │ ├── MainRes.ro.resx │ │ ├── MainRes.ru.resx │ │ ├── MainRes.sr.resx │ │ ├── MainRes.sv.resx │ │ ├── MainRes.tr.resx │ │ ├── MainRes.uk.resx │ │ ├── MainRes.vi.resx │ │ ├── MainRes.zh-Hant.resx │ │ ├── MainRes.zh.resx │ │ ├── MiscRes.ar.resx │ │ ├── MiscRes.bn.resx │ │ ├── MiscRes.br.resx │ │ ├── MiscRes.bs.resx │ │ ├── MiscRes.ca.resx │ │ ├── MiscRes.cs.resx │ │ ├── MiscRes.da.resx │ │ ├── MiscRes.de.resx │ │ ├── MiscRes.el.resx │ │ ├── MiscRes.es.resx │ │ ├── MiscRes.eu.resx │ │ ├── MiscRes.fa.resx │ │ ├── MiscRes.fi.resx │ │ ├── MiscRes.fr.resx │ │ ├── MiscRes.he.resx │ │ ├── MiscRes.hr.resx │ │ ├── MiscRes.hu.resx │ │ ├── MiscRes.id.resx │ │ ├── MiscRes.it.resx │ │ ├── MiscRes.ja.resx │ │ ├── MiscRes.ka.resx │ │ ├── MiscRes.ko.resx │ │ ├── MiscRes.nl.resx │ │ ├── MiscRes.no.resx │ │ ├── MiscRes.pl.resx │ │ ├── MiscRes.pt-BR.resx │ │ ├── MiscRes.pt.resx │ │ ├── MiscRes.ro.resx │ │ ├── MiscRes.ru.resx │ │ ├── MiscRes.sr.resx │ │ ├── MiscRes.sv.resx │ │ ├── MiscRes.tr.resx │ │ ├── MiscRes.uk.resx │ │ ├── MiscRes.vi.resx │ │ ├── MiscRes.zh-Hant.resx │ │ ├── MiscRes.zh.resx │ │ ├── OptionsRes.ar.resx │ │ ├── OptionsRes.bn.resx │ │ ├── OptionsRes.br.resx │ │ ├── OptionsRes.bs.resx │ │ ├── OptionsRes.ca.resx │ │ ├── OptionsRes.cs.resx │ │ ├── OptionsRes.da.resx │ │ ├── OptionsRes.de.resx │ │ ├── OptionsRes.el.resx │ │ ├── OptionsRes.es.resx │ │ ├── OptionsRes.eu.resx │ │ ├── OptionsRes.fa.resx │ │ ├── OptionsRes.fi.resx │ │ ├── OptionsRes.fr.resx │ │ ├── OptionsRes.he.resx │ │ ├── OptionsRes.hr.resx │ │ ├── OptionsRes.hu.resx │ │ ├── OptionsRes.id.resx │ │ ├── OptionsRes.it.resx │ │ ├── OptionsRes.ja.resx │ │ ├── OptionsRes.ka.resx │ │ ├── OptionsRes.ko.resx │ │ ├── OptionsRes.nl.resx │ │ ├── OptionsRes.no.resx │ │ ├── OptionsRes.pl.resx │ │ ├── OptionsRes.pt-BR.resx │ │ ├── OptionsRes.pt.resx │ │ ├── OptionsRes.ro.resx │ │ ├── OptionsRes.ru.resx │ │ ├── OptionsRes.sr.resx │ │ ├── OptionsRes.sv.resx │ │ ├── OptionsRes.tr.resx │ │ ├── OptionsRes.uk.resx │ │ ├── OptionsRes.vi.resx │ │ ├── OptionsRes.zh-Hant.resx │ │ ├── OptionsRes.zh.resx │ │ ├── PickerRes.ar.resx │ │ ├── PickerRes.bn.resx │ │ ├── PickerRes.br.resx │ │ ├── PickerRes.bs.resx │ │ ├── PickerRes.ca.resx │ │ ├── PickerRes.cs.resx │ │ ├── PickerRes.da.resx │ │ ├── PickerRes.de.resx │ │ ├── PickerRes.el.resx │ │ ├── PickerRes.es.resx │ │ ├── PickerRes.eu.resx │ │ ├── PickerRes.fa.resx │ │ ├── PickerRes.fi.resx │ │ ├── PickerRes.fr.resx │ │ ├── PickerRes.he.resx │ │ ├── PickerRes.hr.resx │ │ ├── PickerRes.hu.resx │ │ ├── PickerRes.id.resx │ │ ├── PickerRes.it.resx │ │ ├── PickerRes.ja.resx │ │ ├── PickerRes.ka.resx │ │ ├── PickerRes.ko.resx │ │ ├── PickerRes.nl.resx │ │ ├── PickerRes.no.resx │ │ ├── PickerRes.pl.resx │ │ ├── PickerRes.pt-BR.resx │ │ ├── PickerRes.pt.resx │ │ ├── PickerRes.ro.resx │ │ ├── PickerRes.ru.resx │ │ ├── PickerRes.sr.resx │ │ ├── PickerRes.sv.resx │ │ ├── PickerRes.tr.resx │ │ ├── PickerRes.uk.resx │ │ ├── PickerRes.vi.resx │ │ ├── PickerRes.zh-Hant.resx │ │ ├── PickerRes.zh.resx │ │ ├── PreviewRes.ar.resx │ │ ├── PreviewRes.bn.resx │ │ ├── PreviewRes.br.resx │ │ ├── PreviewRes.bs.resx │ │ ├── PreviewRes.ca.resx │ │ ├── PreviewRes.cs.resx │ │ ├── PreviewRes.da.resx │ │ ├── PreviewRes.de.resx │ │ ├── PreviewRes.el.resx │ │ ├── PreviewRes.es.resx │ │ ├── PreviewRes.eu.resx │ │ ├── PreviewRes.fa.resx │ │ ├── PreviewRes.fi.resx │ │ ├── PreviewRes.fr.resx │ │ ├── PreviewRes.he.resx │ │ ├── PreviewRes.hr.resx │ │ ├── PreviewRes.hu.resx │ │ ├── PreviewRes.id.resx │ │ ├── PreviewRes.it.resx │ │ ├── PreviewRes.ja.resx │ │ ├── PreviewRes.ka.resx │ │ ├── PreviewRes.ko.resx │ │ ├── PreviewRes.nl.resx │ │ ├── PreviewRes.no.resx │ │ ├── PreviewRes.pl.resx │ │ ├── PreviewRes.pt-BR.resx │ │ ├── PreviewRes.pt.resx │ │ ├── PreviewRes.ro.resx │ │ ├── PreviewRes.ru.resx │ │ ├── PreviewRes.sr.resx │ │ ├── PreviewRes.sv.resx │ │ ├── PreviewRes.tr.resx │ │ ├── PreviewRes.uk.resx │ │ ├── PreviewRes.vi.resx │ │ ├── PreviewRes.zh-Hant.resx │ │ ├── PreviewRes.zh.resx │ │ ├── QueueTitlesRes.ar.resx │ │ ├── QueueTitlesRes.bn.resx │ │ ├── QueueTitlesRes.br.resx │ │ ├── QueueTitlesRes.bs.resx │ │ ├── QueueTitlesRes.ca.resx │ │ ├── QueueTitlesRes.cs.resx │ │ ├── QueueTitlesRes.da.resx │ │ ├── QueueTitlesRes.de.resx │ │ ├── QueueTitlesRes.el.resx │ │ ├── QueueTitlesRes.es.resx │ │ ├── QueueTitlesRes.eu.resx │ │ ├── QueueTitlesRes.fa.resx │ │ ├── QueueTitlesRes.fi.resx │ │ ├── QueueTitlesRes.fr.resx │ │ ├── QueueTitlesRes.he.resx │ │ ├── QueueTitlesRes.hr.resx │ │ ├── QueueTitlesRes.hu.resx │ │ ├── QueueTitlesRes.id.resx │ │ ├── QueueTitlesRes.it.resx │ │ ├── QueueTitlesRes.ja.resx │ │ ├── QueueTitlesRes.ka.resx │ │ ├── QueueTitlesRes.ko.resx │ │ ├── QueueTitlesRes.nl.resx │ │ ├── QueueTitlesRes.no.resx │ │ ├── QueueTitlesRes.pl.resx │ │ ├── QueueTitlesRes.pt-BR.resx │ │ ├── QueueTitlesRes.pt.resx │ │ ├── QueueTitlesRes.ro.resx │ │ ├── QueueTitlesRes.ru.resx │ │ ├── QueueTitlesRes.sr.resx │ │ ├── QueueTitlesRes.sv.resx │ │ ├── QueueTitlesRes.tr.resx │ │ ├── QueueTitlesRes.uk.resx │ │ ├── QueueTitlesRes.vi.resx │ │ ├── QueueTitlesRes.zh-Hant.resx │ │ ├── QueueTitlesRes.zh.resx │ │ ├── SubtitleRes.ar.resx │ │ ├── SubtitleRes.bn.resx │ │ ├── SubtitleRes.br.resx │ │ ├── SubtitleRes.bs.resx │ │ ├── SubtitleRes.ca.resx │ │ ├── SubtitleRes.cs.resx │ │ ├── SubtitleRes.da.resx │ │ ├── SubtitleRes.de.resx │ │ ├── SubtitleRes.el.resx │ │ ├── SubtitleRes.es.resx │ │ ├── SubtitleRes.eu.resx │ │ ├── SubtitleRes.fa.resx │ │ ├── SubtitleRes.fi.resx │ │ ├── SubtitleRes.fr.resx │ │ ├── SubtitleRes.he.resx │ │ ├── SubtitleRes.hr.resx │ │ ├── SubtitleRes.hu.resx │ │ ├── SubtitleRes.id.resx │ │ ├── SubtitleRes.it.resx │ │ ├── SubtitleRes.ja.resx │ │ ├── SubtitleRes.ka.resx │ │ ├── SubtitleRes.ko.resx │ │ ├── SubtitleRes.nl.resx │ │ ├── SubtitleRes.no.resx │ │ ├── SubtitleRes.pl.resx │ │ ├── SubtitleRes.pt-BR.resx │ │ ├── SubtitleRes.pt.resx │ │ ├── SubtitleRes.ro.resx │ │ ├── SubtitleRes.ru.resx │ │ ├── SubtitleRes.sr.resx │ │ ├── SubtitleRes.sv.resx │ │ ├── SubtitleRes.tr.resx │ │ ├── SubtitleRes.uk.resx │ │ ├── SubtitleRes.vi.resx │ │ ├── SubtitleRes.zh-Hant.resx │ │ ├── SubtitleRes.zh.resx │ │ ├── WatcherRes.ar.resx │ │ ├── WatcherRes.bn.resx │ │ ├── WatcherRes.br.resx │ │ ├── WatcherRes.bs.resx │ │ ├── WatcherRes.ca.resx │ │ ├── WatcherRes.cs.resx │ │ ├── WatcherRes.da.resx │ │ ├── WatcherRes.de.resx │ │ ├── WatcherRes.el.resx │ │ ├── WatcherRes.es.resx │ │ ├── WatcherRes.eu.resx │ │ ├── WatcherRes.fa.resx │ │ ├── WatcherRes.fi.resx │ │ ├── WatcherRes.fr.resx │ │ ├── WatcherRes.he.resx │ │ ├── WatcherRes.hr.resx │ │ ├── WatcherRes.hu.resx │ │ ├── WatcherRes.id.resx │ │ ├── WatcherRes.it.resx │ │ ├── WatcherRes.ja.resx │ │ ├── WatcherRes.ka.resx │ │ ├── WatcherRes.ko.resx │ │ ├── WatcherRes.nl.resx │ │ ├── WatcherRes.no.resx │ │ ├── WatcherRes.pl.resx │ │ ├── WatcherRes.pt-BR.resx │ │ ├── WatcherRes.pt.resx │ │ ├── WatcherRes.ro.resx │ │ ├── WatcherRes.ru.resx │ │ ├── WatcherRes.sr.resx │ │ ├── WatcherRes.sv.resx │ │ ├── WatcherRes.tr.resx │ │ ├── WatcherRes.uk.resx │ │ ├── WatcherRes.vi.resx │ │ ├── WatcherRes.zh-Hant.resx │ │ └── WatcherRes.zh.resx │ ├── WatcherRes.Designer.cs │ └── WatcherRes.resx ├── Services │ ├── ActivityService.cs │ ├── AllAppLogger.cs │ ├── AppLogger.cs │ ├── AppLoggerFactory.cs │ ├── AppTheme.cs │ ├── AppThemeService.cs │ ├── AutoChangeTracker.cs │ ├── AutoPause.cs │ ├── ClipboardService.cs │ ├── DriveService.cs │ ├── FileService.cs │ ├── GeneralAppLogger.cs │ ├── HandBrakeProxy │ │ ├── IEncodeProxy.cs │ │ ├── IScanProxy.cs │ │ ├── LocalEncodeProxy.cs │ │ ├── LocalScanProxy.cs │ │ ├── RemoteEncodeProxy.cs │ │ ├── RemoteProxyBase.cs │ │ └── RemoteScanProxy.cs │ ├── HardwareResourceService.cs │ ├── Interfaces │ │ ├── IAppLogger.cs │ │ ├── IAppThemeService.cs │ │ ├── IAutoPause.cs │ │ ├── IDriveService.cs │ │ ├── IFileService.cs │ │ ├── IMessageBoxService.cs │ │ ├── IPresetImportExport.cs │ │ ├── IProcesses.cs │ │ ├── IQueueImportExport.cs │ │ ├── ISystemOperations.cs │ │ └── IUpdater.cs │ ├── LocalScanAppLogger.cs │ ├── LogCoordinator.cs │ ├── MessageBoxService.cs │ ├── Notifications │ │ ├── IToastNotificationService.cs │ │ ├── StubNotificationService.cs │ │ └── ToastNotificationService.cs │ ├── OutputPathService.cs │ ├── OutputSizeService.cs │ ├── PendingAutoChange.cs │ ├── PickersService.cs │ ├── PresetImportExport.cs │ ├── PresetsService.cs │ ├── PreviewImageLoadInfo.cs │ ├── PreviewImageService.cs │ ├── PreviewImageServiceClient.cs │ ├── PreviewUpdateService.cs │ ├── Processes.cs │ ├── ProcessingService.cs │ ├── QsvLoadBalancingService.cs │ ├── QueueAdderService.cs │ ├── QueueImportExport.cs │ ├── QueueWorkTracker.cs │ ├── StatusService.cs │ ├── StubLogger.cs │ ├── SubtitlesService.cs │ ├── SystemOperations.cs │ ├── TaskBarProgressTracker.cs │ ├── TrayService.cs │ ├── Updater.cs │ ├── VideoFileFinder.cs │ ├── WatchedFileStatusTracker.cs │ ├── WatcherProcessManager.cs │ ├── WindowXamlHelper.cs │ └── Windows │ │ ├── IClosableWindow.cs │ │ ├── IWindowManager.cs │ │ ├── WindowDefinition.cs │ │ ├── WindowManager.cs │ │ ├── WindowMenuItemViewModel.cs │ │ └── WindowPlacer.cs ├── Settings.cs ├── Themes │ ├── Dark.xaml │ ├── HighContrast.xaml │ └── Light.xaml ├── Utilities │ ├── BitmapUtilities.cs │ ├── ColorUtilities.cs │ ├── DispatchUtilities.cs │ ├── DisplayConversions.cs │ ├── EnumConverter.cs │ ├── FileCleanup.cs │ ├── FileOperationApiWrapper.cs │ ├── FileUtilities.cs │ ├── ImageUtilities.cs │ ├── Ioc.cs │ ├── LanguageUtilities.cs │ ├── ListSynchronizer │ │ ├── IListItemConverter.cs │ │ ├── MultiSelectorBehaviors.cs │ │ └── TwoListSynchronizer.cs │ ├── LogEntryClassificationUtilities.cs │ ├── MathUtilities.cs │ ├── MvvmUtilities.cs │ ├── NativeMethods.cs │ ├── ParentProcessUtilities.cs │ ├── ParseUtilities.cs │ ├── PickerUtilities.cs │ ├── PresetConverter.cs │ ├── PseudoLocalizer.cs │ ├── RefireControl.cs │ ├── RegistryUtilities.cs │ ├── ResolutionUtilities.cs │ ├── SourceHistory.cs │ ├── SystemInputTracker.cs │ ├── SystemPowerStatus.cs │ ├── SystemSleepManagement.cs │ ├── TrackingStreamReader.cs │ ├── UIUtilities.cs │ ├── Utilities.cs │ ├── VideoCodecUtilities.cs │ ├── WpfSystemIcons.cs │ └── XamlStatics.cs ├── VidCoder.csproj ├── VidCoderInstall.cs ├── VidCoder_icon.ico ├── View │ ├── AboutDialog.xaml │ ├── AboutDialog.xaml.cs │ ├── AddAutoPauseProcessDialog.xaml │ ├── AddAutoPauseProcessDialog.xaml.cs │ ├── ApplyUpdateConfirmation.xaml │ ├── ApplyUpdateConfirmation.xaml.cs │ ├── ChapterMarkersDialog.xaml │ ├── ChapterMarkersDialog.xaml.cs │ ├── ChooseName.xaml │ ├── ChooseName.xaml.cs │ ├── ColumnsDialog.xaml │ ├── ColumnsDialog.xaml.cs │ ├── CompareWindow.xaml │ ├── CompareWindow.xaml.cs │ ├── CustomMessageDialog.xaml │ ├── CustomMessageDialog.xaml.cs │ ├── DebugJsonDialog.xaml │ ├── DebugJsonDialog.xaml.cs │ ├── EncodeDetailsWindow.xaml │ ├── EncodeDetailsWindow.xaml.cs │ ├── EncodingWindow.xaml │ ├── EncodingWindow.xaml.cs │ ├── ExceptionDialog.xaml │ ├── ExceptionDialog.xaml.cs │ ├── LogWindow.xaml │ ├── LogWindow.xaml.cs │ ├── Main.xaml │ ├── Main.xaml.cs │ ├── OptionsDialog.xaml │ ├── OptionsDialog.xaml.cs │ ├── Panels │ │ ├── AudioEncodingPanel.xaml │ │ ├── AudioEncodingPanel.xaml.cs │ │ ├── AudioPanel.xaml │ │ ├── AudioPanel.xaml.cs │ │ ├── ContainerPanel.xaml │ │ ├── ContainerPanel.xaml.cs │ │ ├── SizingPanel.xaml │ │ ├── SizingPanel.xaml.cs │ │ ├── VideoFiltersPanel.xaml │ │ ├── VideoFiltersPanel.xaml.cs │ │ ├── VideoPanel.xaml │ │ └── VideoPanel.xaml.cs │ ├── PickerWindow.xaml │ ├── PickerWindow.xaml.cs │ ├── Preview │ │ ├── PreviewCorners.xaml │ │ ├── PreviewCorners.xaml.cs │ │ ├── PreviewCreationControls.xaml │ │ ├── PreviewCreationControls.xaml.cs │ │ ├── PreviewFit.xaml │ │ ├── PreviewFit.xaml.cs │ │ ├── PreviewGeneratingControls.xaml │ │ ├── PreviewGeneratingControls.xaml.cs │ │ ├── PreviewOneToOne.xaml │ │ ├── PreviewOneToOne.xaml.cs │ │ ├── PreviewPlaybackControls.xaml │ │ └── PreviewPlaybackControls.xaml.cs │ ├── PreviewWindow.xaml │ ├── PreviewWindow.xaml.cs │ ├── QueueTitlesWindow.xaml │ ├── QueueTitlesWindow.xaml.cs │ ├── Selectors │ │ ├── PresetTreeContainerStyleSelector.cs │ │ └── PresetTreeTemplateSelector.cs │ ├── ShutdownWarningWindow.xaml │ ├── ShutdownWarningWindow.xaml.cs │ ├── SplashWindow.xaml │ ├── SplashWindow.xaml.cs │ ├── WatcherEditDialog.xaml │ ├── WatcherEditDialog.xaml.cs │ ├── WatcherWindow.xaml │ └── WatcherWindow.xaml.cs ├── ViewModel │ ├── AboutDialogViewModel.cs │ ├── AddAutoPauseProcessDialogViewModel.cs │ ├── ChapterMarkersDialogViewModel.cs │ ├── ChooseNameViewModel.cs │ ├── ColumnsDialogViewModel.cs │ ├── CompareWindowViewModel.cs │ ├── CustomMessageDialogViewModel.cs │ ├── DataModels │ │ ├── AudioEncoderViewModel.cs │ │ ├── AudioEncodingViewModel.cs │ │ ├── AudioOutputPreview.cs │ │ ├── AudioTrackViewModel.cs │ │ ├── BitrateChoiceViewModel.cs │ │ ├── ChapterNameViewModel.cs │ │ ├── ChapterViewModel.cs │ │ ├── ColumnViewModel.cs │ │ ├── CopyMaskChoiceViewModel.cs │ │ ├── EncodeJobViewModel.cs │ │ ├── EncodeResultViewModel.cs │ │ ├── FileSubtitleViewModel.cs │ │ ├── InfoLineViewModel.cs │ │ ├── InterfaceLanguage.cs │ │ ├── LanguageViewModel.cs │ │ ├── LevelChoiceViewModel.cs │ │ ├── LogViewModel.cs │ │ ├── MixdownViewModel.cs │ │ ├── PickerViewModel.cs │ │ ├── PresetFolderViewModel.cs │ │ ├── PresetViewModel.cs │ │ ├── RotationViewModel.cs │ │ ├── SourceOptionViewModel.cs │ │ ├── SourceSubtitleViewModel.cs │ │ ├── SourceTitleViewModel.cs │ │ ├── TargetStreamViewModel.cs │ │ ├── TitleSelectionViewModel.cs │ │ ├── TrackNameViewModel.cs │ │ ├── VideoEncoderViewModel.cs │ │ ├── WatchedFileViewModel.cs │ │ ├── WatchedFolderViewModel.cs │ │ └── WordBreakCharacterChoice.cs │ ├── EncodeDetailsWindowViewModel.cs │ ├── EncodingWindowViewModel.cs │ ├── ICompareView.cs │ ├── IMainView.cs │ ├── IPickerWindowView.cs │ ├── IPreviewView.cs │ ├── LogWindowViewModel.cs │ ├── MainViewModel.cs │ ├── OkCancelDialogViewModel.cs │ ├── OptionsDialogViewModel.cs │ ├── Panels │ │ ├── AudioPanelViewModel.cs │ │ ├── ContainerPanelViewModel.cs │ │ ├── PanelViewModel.cs │ │ ├── SizingPanelViewModel.cs │ │ ├── VideoFiltersPanelViewModel.cs │ │ └── VideoPanelViewModel.cs │ ├── PickerWindowViewModel.cs │ ├── PreviewWindowViewModel.cs │ ├── ProfileViewModelBase.cs │ ├── QueueTitlesWindowViewModel.cs │ ├── ShutdownWarningWindowViewModel.cs │ ├── WatcherEditDialogViewModel.cs │ └── WatcherWindowViewModel.cs ├── WindowPlacement.cs ├── XamlResources │ ├── Button.xaml │ ├── CheckBox.xaml │ ├── ComboBox.xaml │ ├── GridViewColumnHeader.xaml │ ├── ListBox.xaml │ ├── ListView.xaml │ ├── ListViewItem.xaml │ ├── PresetComboBox.xaml │ ├── RadioButton.xaml │ └── TextBox.xaml └── app.manifest ├── VidCoderCLI ├── Program.cs ├── Properties │ └── launchSettings.json └── VidCoderCLI.csproj ├── VidCoderCommon.Tests ├── Model │ └── JsonEncodeFactoryTests.cs └── VidCoderCommon.Tests.csproj ├── VidCoderCommon ├── Extensions │ ├── FrameRateExtensions.cs │ ├── JsonDurationExtensions.cs │ ├── ParExtensions.cs │ └── ScalingModeExtensions.cs ├── IHandBrakeEncodeWorker.cs ├── IHandBrakeEncodeWorkerCallback.cs ├── IHandBrakeScanWorker.cs ├── IHandBrakeScanWorkerCallback.cs ├── IHandBrakeWorker.cs ├── IHandBrakeWorkerCallback.cs ├── JsonConverters │ ├── TimespanConverter.cs │ ├── VCJobConverter.cs │ ├── VCSubtitlesConverter.cs │ └── VersionConverter.cs ├── Model │ ├── AudioEncoding.cs │ ├── AutomationResult.cs │ ├── CommonDatabase.cs │ ├── CopyMaskChoice.cs │ ├── DatabaseConfig.cs │ ├── FolderType.cs │ ├── HandBrakeWorkerAction.cs │ ├── IBasicLogger.cs │ ├── Job │ │ ├── ChosenAudioTrack.cs │ │ ├── ChosenSourceSubtitle.cs │ │ ├── FileSubtitle.cs │ │ ├── JobConfiguration.cs │ │ ├── SourceType.cs │ │ ├── VCJob.cs │ │ ├── VCSubtitles.cs │ │ └── VideoRangeType.cs │ ├── JsonEncodeFactory.cs │ ├── OutputAudioTrackInfo.cs │ ├── OutputSizeInfo.cs │ ├── PickerFileFilter.cs │ ├── Preset │ │ ├── AudioEncodeRateType.cs │ │ ├── Preset.cs │ │ ├── VCAnamorphic.cs │ │ ├── VCCropping.cs │ │ ├── VCCroppingType.cs │ │ ├── VCDeinterlace.cs │ │ ├── VCDenoise.cs │ │ ├── VCOutputExtension.cs │ │ ├── VCPadding.cs │ │ ├── VCPaddingMode.cs │ │ ├── VCPictureRotation.cs │ │ ├── VCProfile.cs │ │ ├── VCScalingMode.cs │ │ ├── VCSharpen.cs │ │ ├── VCSizingMode.cs │ │ └── VCVideoEncodeRateType.cs │ ├── SourcePathWithType.cs │ ├── VCEncodeCompletedEventArgs.cs │ ├── VCEncodeResult.cs │ ├── WatchedFile.cs │ ├── WatchedFileStatus.cs │ ├── WatchedFileStatusReason.cs │ ├── WatchedFolder.cs │ ├── WatcherMode.cs │ └── WatcherStorage.cs ├── Services │ ├── AutomationClient.cs │ ├── ILogger.cs │ ├── IVidCoderAutomation.cs │ └── SupportLogger.cs ├── Utilities │ ├── AdvancedOptionUtilities.cs │ ├── AudioUtilities.cs │ ├── CommonFileUtilities.cs │ ├── CommonUtilities.cs │ ├── HandBrakeNativeConstants.cs │ ├── Injection │ │ └── CloneInjection.cs │ ├── JsonOptions.cs │ ├── MathUtilities.cs │ ├── ModelConverters.cs │ ├── PickerDefaults.cs │ ├── ThreadUtilities.cs │ └── VidCoderLauncher.cs └── VidCoderCommon.csproj ├── VidCoderFileWatcher ├── Model │ ├── IWatcherCommands.cs │ ├── StrippedPicker.cs │ ├── WatcherDatabase.cs │ └── WatcherRepository.cs ├── Program.cs ├── Services │ ├── FolderEnumerator.cs │ ├── PollingFolderWatcher.cs │ ├── SystemFolderWatcher.cs │ └── WatcherService.cs └── VidCoderFileWatcher.csproj ├── VidCoderWindowlessCLI ├── Program.cs └── VidCoderWindowlessCLI.csproj ├── VidCoderWorker ├── EncodeState.cs ├── HandBrakeEncodeWorker.cs ├── HandBrakeScanWorker.cs ├── HandBrakeWorkerBase.cs ├── PreviewImage.cs ├── Program.cs ├── Properties │ └── PublishProfiles │ │ └── PortableProfile.pubxml ├── VidCoderWorker.csproj ├── VidCoderWorker.ico ├── WorkerErrorLogger.cs └── WorkerLogger.cs └── update_hbdll.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.github/ISSUE_TEMPLATE/crash_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /DownloadAndCopyResx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/DownloadAndCopyResx.ps1 -------------------------------------------------------------------------------- /Installer/InstallerSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Installer/InstallerSplash.png -------------------------------------------------------------------------------- /Installer/VidCoderRar.conf: -------------------------------------------------------------------------------- 1 | Setup=VidCoder.exe 2 | TempMode 3 | Silent=1 4 | Overwrite=1 -------------------------------------------------------------------------------- /Installer/VidCoder_Setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Installer/VidCoder_Setup.ico -------------------------------------------------------------------------------- /Lib/HandBrake.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Lib/HandBrake.Interop.dll -------------------------------------------------------------------------------- /Lib/HandBrake.Interop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Lib/HandBrake.Interop.pdb -------------------------------------------------------------------------------- /Lib/hb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/Lib/hb.dll -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/License.txt -------------------------------------------------------------------------------- /SourceImages/VidCoder_Icon_NoShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/SourceImages/VidCoder_Icon_NoShadow.png -------------------------------------------------------------------------------- /ThirdPartyLicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/ThirdPartyLicenses.txt -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /VidCoder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder.sln -------------------------------------------------------------------------------- /VidCoder.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder.sln.DotSettings -------------------------------------------------------------------------------- /VidCoder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/App.xaml -------------------------------------------------------------------------------- /VidCoder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/App.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Automation/AutomationHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Automation/AutomationHost.cs -------------------------------------------------------------------------------- /VidCoder/Automation/VidCoderAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Automation/VidCoderAutomation.cs -------------------------------------------------------------------------------- /VidCoder/Behaviors/IgnoreMouseWheelBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Behaviors/IgnoreMouseWheelBehavior.cs -------------------------------------------------------------------------------- /VidCoder/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Constants.cs -------------------------------------------------------------------------------- /VidCoder/Controls/AvailabilityIndicator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/AvailabilityIndicator.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/AvailabilityIndicator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/AvailabilityIndicator.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/EnhancedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/EnhancedListView.cs -------------------------------------------------------------------------------- /VidCoder/Controls/IListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/IListItemViewModel.cs -------------------------------------------------------------------------------- /VidCoder/Controls/InlineWarning.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/InlineWarning.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/InlineWarning.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/InlineWarning.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/NumberBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/NumberBox.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/NumberBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/NumberBox.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PathSegmentSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PathSegmentSet.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PathTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PathTextBlock.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/PathTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PathTextBlock.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PickerList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PickerList.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/PickerList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PickerList.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PresetComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PresetComboBox.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PresetTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PresetTreeView.cs -------------------------------------------------------------------------------- /VidCoder/Controls/PresetTreeViewContainer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PresetTreeViewContainer.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/PresetTreeViewContainer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/PresetTreeViewContainer.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/RangeBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/RangeBar.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/RangeBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/RangeBar.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/SlotSeekBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/SlotSeekBar.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/SlotSeekBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/SlotSeekBar.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/SplitButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/SplitButton.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/SplitButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/SplitButton.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/TimeBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/TimeBox.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/TimeBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/TimeBox.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/ToolWindowTitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/ToolWindowTitleBar.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/ToolWindowTitleBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/ToolWindowTitleBar.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Controls/VideoSeekBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/VideoSeekBar.xaml -------------------------------------------------------------------------------- /VidCoder/Controls/VideoSeekBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Controls/VideoSeekBar.xaml.cs -------------------------------------------------------------------------------- /VidCoder/Converters/BoolRadioConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/BoolRadioConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/ChapterVMConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/ChapterVMConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/DoubleDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/DoubleDisplayConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/EnumBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/EnumBoolConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/EnumBoolInverseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/EnumBoolInverseConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/EnumVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/EnumVisibilityConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/FramerateDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/FramerateDisplayConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/IntVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/IntVisibilityConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/PercentDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/PercentDisplayConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/SampleRateDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/SampleRateDisplayConverter.cs -------------------------------------------------------------------------------- /VidCoder/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/DragDropHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/DragDropHelper.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/DragDropUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/DragDropUtilities.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/DraggedAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/DraggedAdorner.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/IDragItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/IDragItem.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/InsertionAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/InsertionAdorner.cs -------------------------------------------------------------------------------- /VidCoder/DragDrop/MoveToFolderAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/DragDrop/MoveToFolderAdorner.cs -------------------------------------------------------------------------------- /VidCoder/Encode_Complete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Encode_Complete.wav -------------------------------------------------------------------------------- /VidCoder/EnumDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/EnumDisplayer.cs -------------------------------------------------------------------------------- /VidCoder/EnumStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/EnumStringConverter.cs -------------------------------------------------------------------------------- /VidCoder/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/EventArgs.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/JsonScanObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/JsonScanObjectExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/LogEntryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/LogEntryExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/PresetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/PresetExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/PreviewFrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/PreviewFrameExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/RectExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/TitleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/TitleExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/VersionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/VersionExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/WatchedFileStatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/WatchedFileStatusExtensions.cs -------------------------------------------------------------------------------- /VidCoder/Extensions/WindowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Extensions/WindowExtensions.cs -------------------------------------------------------------------------------- /VidCoder/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/IDialog.cs -------------------------------------------------------------------------------- /VidCoder/Icons/AddToQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/AddToQueue.png -------------------------------------------------------------------------------- /VidCoder/Icons/Audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Audio.png -------------------------------------------------------------------------------- /VidCoder/Icons/ChapterMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/ChapterMarkers.png -------------------------------------------------------------------------------- /VidCoder/Icons/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Clear.png -------------------------------------------------------------------------------- /VidCoder/Icons/ClearFailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/ClearFailed.png -------------------------------------------------------------------------------- /VidCoder/Icons/ClearSucceeded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/ClearSucceeded.png -------------------------------------------------------------------------------- /VidCoder/Icons/Compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Compare.png -------------------------------------------------------------------------------- /VidCoder/Icons/Disc64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Disc64.png -------------------------------------------------------------------------------- /VidCoder/Icons/Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Empty.png -------------------------------------------------------------------------------- /VidCoder/Icons/Encode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Encode.png -------------------------------------------------------------------------------- /VidCoder/Icons/EncodingSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/EncodingSettings.png -------------------------------------------------------------------------------- /VidCoder/Icons/Eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Eye.png -------------------------------------------------------------------------------- /VidCoder/Icons/File/VidCoderPreset.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/File/VidCoderPreset.ico -------------------------------------------------------------------------------- /VidCoder/Icons/File/VidCoderQueue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/File/VidCoderQueue.ico -------------------------------------------------------------------------------- /VidCoder/Icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Help.png -------------------------------------------------------------------------------- /VidCoder/Icons/ImportExport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/ImportExport.png -------------------------------------------------------------------------------- /VidCoder/Icons/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Options.png -------------------------------------------------------------------------------- /VidCoder/Icons/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Pause.png -------------------------------------------------------------------------------- /VidCoder/Icons/Picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Picker.png -------------------------------------------------------------------------------- /VidCoder/Icons/Preview64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Preview64.png -------------------------------------------------------------------------------- /VidCoder/Icons/Reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Reload.png -------------------------------------------------------------------------------- /VidCoder/Icons/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Remove.png -------------------------------------------------------------------------------- /VidCoder/Icons/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Splash.png -------------------------------------------------------------------------------- /VidCoder/Icons/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Stop.png -------------------------------------------------------------------------------- /VidCoder/Icons/Subtitles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Subtitles.png -------------------------------------------------------------------------------- /VidCoder/Icons/VidCoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/VidCoder.png -------------------------------------------------------------------------------- /VidCoder/Icons/VidCoder32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/VidCoder32.png -------------------------------------------------------------------------------- /VidCoder/Icons/VolumeMute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/VolumeMute.png -------------------------------------------------------------------------------- /VidCoder/Icons/VolumeOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/VolumeOn.png -------------------------------------------------------------------------------- /VidCoder/Icons/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/Windows.png -------------------------------------------------------------------------------- /VidCoder/Icons/add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/add_folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/bludisc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/bludisc.png -------------------------------------------------------------------------------- /VidCoder/Icons/blue_play_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/blue_play_80.png -------------------------------------------------------------------------------- /VidCoder/Icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/copy.png -------------------------------------------------------------------------------- /VidCoder/Icons/crop_bg_tile_12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/crop_bg_tile_12x12.png -------------------------------------------------------------------------------- /VidCoder/Icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/delete.png -------------------------------------------------------------------------------- /VidCoder/Icons/delete_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/delete_folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/disc.png -------------------------------------------------------------------------------- /VidCoder/Icons/dvd_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/dvd_folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/edit_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/edit_16x16.png -------------------------------------------------------------------------------- /VidCoder/Icons/edit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/edit_2.png -------------------------------------------------------------------------------- /VidCoder/Icons/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/failed.png -------------------------------------------------------------------------------- /VidCoder/Icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/play_clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/play_clip.png -------------------------------------------------------------------------------- /VidCoder/Icons/play_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/play_small.png -------------------------------------------------------------------------------- /VidCoder/Icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/redo.png -------------------------------------------------------------------------------- /VidCoder/Icons/rename_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/rename_folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/rotate_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/rotate_180.png -------------------------------------------------------------------------------- /VidCoder/Icons/rotate_90_ccw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/rotate_90_ccw.png -------------------------------------------------------------------------------- /VidCoder/Icons/rotate_90_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/rotate_90_cw.png -------------------------------------------------------------------------------- /VidCoder/Icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/save.png -------------------------------------------------------------------------------- /VidCoder/Icons/succeeded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/succeeded.png -------------------------------------------------------------------------------- /VidCoder/Icons/text_file_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/text_file_16x16.png -------------------------------------------------------------------------------- /VidCoder/Icons/undo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/undo_16x16.png -------------------------------------------------------------------------------- /VidCoder/Icons/video-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/video-file.png -------------------------------------------------------------------------------- /VidCoder/Icons/video_files_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/video_files_folder.png -------------------------------------------------------------------------------- /VidCoder/Icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/warning.png -------------------------------------------------------------------------------- /VidCoder/Icons/win7foldericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Icons/win7foldericon.png -------------------------------------------------------------------------------- /VidCoder/LayoutPanels/TruncatePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/LayoutPanels/TruncatePanel.cs -------------------------------------------------------------------------------- /VidCoder/Model/AppThemeChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/AppThemeChoice.cs -------------------------------------------------------------------------------- /VidCoder/Model/AudioSelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/AudioSelectionMode.cs -------------------------------------------------------------------------------- /VidCoder/Model/CharCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/CharCode.cs -------------------------------------------------------------------------------- /VidCoder/Model/ComboChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/ComboChoice.cs -------------------------------------------------------------------------------- /VidCoder/Model/ComboChoiceT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/ComboChoiceT.cs -------------------------------------------------------------------------------- /VidCoder/Model/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Config/Config.cs -------------------------------------------------------------------------------- /VidCoder/Model/Config/Config.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Config/Config.tt -------------------------------------------------------------------------------- /VidCoder/Model/Config/Config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Config/Config.txt -------------------------------------------------------------------------------- /VidCoder/Model/Config/ConfigObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Config/ConfigObservable.cs -------------------------------------------------------------------------------- /VidCoder/Model/Config/CustomConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Config/CustomConfig.cs -------------------------------------------------------------------------------- /VidCoder/Model/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Database.cs -------------------------------------------------------------------------------- /VidCoder/Model/DragDropOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/DragDropOrder.cs -------------------------------------------------------------------------------- /VidCoder/Model/DriveInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/DriveInformation.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeCompleteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeCompleteAction.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeCompleteActionPersisted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeCompleteActionPersisted.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeCompleteActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeCompleteActionType.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeCompleteReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeCompleteReason.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeCompleteTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeCompleteTrigger.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeJobPersistGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeJobPersistGroup.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeJobStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeJobStorage.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeJobWithMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeJobWithMetadata.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeJobsXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeJobsXml.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeResult.cs -------------------------------------------------------------------------------- /VidCoder/Model/EncodeResultStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/EncodeResultStatus.cs -------------------------------------------------------------------------------- /VidCoder/Model/FileConflictResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/FileConflictResolution.cs -------------------------------------------------------------------------------- /VidCoder/Model/FileQueueCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/FileQueueCheckResult.cs -------------------------------------------------------------------------------- /VidCoder/Model/HardwarePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/HardwarePool.cs -------------------------------------------------------------------------------- /VidCoder/Model/IPreviewFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/IPreviewFrame.cs -------------------------------------------------------------------------------- /VidCoder/Model/JobCompletedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/JobCompletedEventArgs.cs -------------------------------------------------------------------------------- /VidCoder/Model/JobInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/JobInstructions.cs -------------------------------------------------------------------------------- /VidCoder/Model/JobPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/JobPreset.cs -------------------------------------------------------------------------------- /VidCoder/Model/JobWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/JobWork.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogChunk.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogColor.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogEntry.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogOperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogOperationType.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogSource.cs -------------------------------------------------------------------------------- /VidCoder/Model/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LogType.cs -------------------------------------------------------------------------------- /VidCoder/Model/LoggedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/LoggedEntry.cs -------------------------------------------------------------------------------- /VidCoder/Model/PartFileNaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PartFileNaming.cs -------------------------------------------------------------------------------- /VidCoder/Model/PendingScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PendingScan.cs -------------------------------------------------------------------------------- /VidCoder/Model/Picker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Picker.cs -------------------------------------------------------------------------------- /VidCoder/Model/PickerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PickerStorage.cs -------------------------------------------------------------------------------- /VidCoder/Model/PickerTimeRangeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PickerTimeRangeMode.cs -------------------------------------------------------------------------------- /VidCoder/Model/Players/IVideoPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Players/IVideoPlayer.cs -------------------------------------------------------------------------------- /VidCoder/Model/Players/MpchcPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Players/MpchcPlayer.cs -------------------------------------------------------------------------------- /VidCoder/Model/Players/Players.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Players/Players.cs -------------------------------------------------------------------------------- /VidCoder/Model/Players/VideoPlayerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Players/VideoPlayerBase.cs -------------------------------------------------------------------------------- /VidCoder/Model/Players/VlcPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Players/VlcPlayer.cs -------------------------------------------------------------------------------- /VidCoder/Model/PresetFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PresetFolder.cs -------------------------------------------------------------------------------- /VidCoder/Model/PresetFolderStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PresetFolderStorage.cs -------------------------------------------------------------------------------- /VidCoder/Model/PresetStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PresetStorage.cs -------------------------------------------------------------------------------- /VidCoder/Model/PresetWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PresetWrapper.cs -------------------------------------------------------------------------------- /VidCoder/Model/PreviewControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PreviewControls.cs -------------------------------------------------------------------------------- /VidCoder/Model/PreviewDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PreviewDisplay.cs -------------------------------------------------------------------------------- /VidCoder/Model/PreviewEncodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PreviewEncodeState.cs -------------------------------------------------------------------------------- /VidCoder/Model/PreviewImageJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PreviewImageJob.cs -------------------------------------------------------------------------------- /VidCoder/Model/PreviewMainDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/PreviewMainDisplay.cs -------------------------------------------------------------------------------- /VidCoder/Model/RangeFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/RangeFocusEventArgs.cs -------------------------------------------------------------------------------- /VidCoder/Model/SaveImageJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SaveImageJob.cs -------------------------------------------------------------------------------- /VidCoder/Model/ScanResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/ScanResult.cs -------------------------------------------------------------------------------- /VidCoder/Model/Side.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/Side.cs -------------------------------------------------------------------------------- /VidCoder/Model/SourceFileRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SourceFileRemoval.cs -------------------------------------------------------------------------------- /VidCoder/Model/SourceFileRemovalTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SourceFileRemovalTiming.cs -------------------------------------------------------------------------------- /VidCoder/Model/SourceOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SourceOption.cs -------------------------------------------------------------------------------- /VidCoder/Model/SourcePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SourcePath.cs -------------------------------------------------------------------------------- /VidCoder/Model/SubtitleBurnInSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SubtitleBurnInSelection.cs -------------------------------------------------------------------------------- /VidCoder/Model/SubtitleSelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/SubtitleSelectionMode.cs -------------------------------------------------------------------------------- /VidCoder/Model/TitleCapitalizationChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/TitleCapitalizationChoice.cs -------------------------------------------------------------------------------- /VidCoder/Model/TitleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/TitleType.cs -------------------------------------------------------------------------------- /VidCoder/Model/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/UpdateInfo.cs -------------------------------------------------------------------------------- /VidCoder/Model/UpdateMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/UpdateMode.cs -------------------------------------------------------------------------------- /VidCoder/Model/UpdateState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/UpdateState.cs -------------------------------------------------------------------------------- /VidCoder/Model/VidCoderInstallType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/VidCoderInstallType.cs -------------------------------------------------------------------------------- /VidCoder/Model/VideoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/VideoSource.cs -------------------------------------------------------------------------------- /VidCoder/Model/VideoSourceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/VideoSourceMetadata.cs -------------------------------------------------------------------------------- /VidCoder/Model/VideoSourceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/VideoSourceState.cs -------------------------------------------------------------------------------- /VidCoder/Model/WatchedFileStatusLive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WatchedFileStatusLive.cs -------------------------------------------------------------------------------- /VidCoder/Model/WatcherProcessStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WatcherProcessStatus.cs -------------------------------------------------------------------------------- /VidCoder/Model/WhenFileExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WhenFileExists.cs -------------------------------------------------------------------------------- /VidCoder/Model/WindowPlacer/WindowPlacerLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WindowPlacer/WindowPlacerLocation.cs -------------------------------------------------------------------------------- /VidCoder/Model/WindowPlacer/WindowPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WindowPlacer/WindowPosition.cs -------------------------------------------------------------------------------- /VidCoder/Model/WordBreakCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Model/WordBreakCharacter.cs -------------------------------------------------------------------------------- /VidCoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Program.cs -------------------------------------------------------------------------------- /VidCoder/Resources/ChapterMarkersRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/ChapterMarkersRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/ChapterMarkersRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/ChapterMarkersRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/CommonRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/CommonRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/CommonRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/CommonRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/EncodeDetailsRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EncodeDetailsRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/EncodeDetailsRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EncodeDetailsRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/EncodingRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EncodingRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/EncodingRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EncodingRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/EnumsRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EnumsRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/EnumsRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/EnumsRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/LogRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/LogRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/LogRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/LogRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/MainRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/MainRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/MainRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/MainRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/MiscRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/MiscRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/MiscRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/MiscRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/OptionsRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/OptionsRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/OptionsRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/OptionsRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/PickerRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/PickerRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/PickerRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/PickerRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/PreviewRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/PreviewRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/PreviewRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/PreviewRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/QueueTitlesRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/QueueTitlesRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/QueueTitlesRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/QueueTitlesRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/SubtitleRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/SubtitleRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/SubtitleRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/SubtitleRes.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/CommonRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/CommonRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EncodingRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EncodingRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.pt-BR.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/EnumsRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/EnumsRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.pt-BR.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.zh-Hant.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/LogRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/LogRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.pt-BR.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MainRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MainRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.pt-BR.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/MiscRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/MiscRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/OptionsRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/OptionsRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ar.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.bn.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.br.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.bs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.bs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ca.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.cs.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.da.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.de.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.el.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.es.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.eu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.fa.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.fi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.fr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.he.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.hr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.hu.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.id.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.it.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ja.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ka.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ko.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.nl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.no.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.pl.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.pt.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ro.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.ru.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.sr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.sv.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.tr.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.uk.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.vi.resx -------------------------------------------------------------------------------- /VidCoder/Resources/Translations/PickerRes.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/Translations/PickerRes.zh.resx -------------------------------------------------------------------------------- /VidCoder/Resources/WatcherRes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/WatcherRes.Designer.cs -------------------------------------------------------------------------------- /VidCoder/Resources/WatcherRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Resources/WatcherRes.resx -------------------------------------------------------------------------------- /VidCoder/Services/ActivityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/ActivityService.cs -------------------------------------------------------------------------------- /VidCoder/Services/AllAppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AllAppLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/AppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AppLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/AppLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AppLoggerFactory.cs -------------------------------------------------------------------------------- /VidCoder/Services/AppTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AppTheme.cs -------------------------------------------------------------------------------- /VidCoder/Services/AppThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AppThemeService.cs -------------------------------------------------------------------------------- /VidCoder/Services/AutoChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AutoChangeTracker.cs -------------------------------------------------------------------------------- /VidCoder/Services/AutoPause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/AutoPause.cs -------------------------------------------------------------------------------- /VidCoder/Services/ClipboardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/ClipboardService.cs -------------------------------------------------------------------------------- /VidCoder/Services/DriveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/DriveService.cs -------------------------------------------------------------------------------- /VidCoder/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/FileService.cs -------------------------------------------------------------------------------- /VidCoder/Services/GeneralAppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/GeneralAppLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/HandBrakeProxy/IEncodeProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/HandBrakeProxy/IEncodeProxy.cs -------------------------------------------------------------------------------- /VidCoder/Services/HandBrakeProxy/IScanProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/HandBrakeProxy/IScanProxy.cs -------------------------------------------------------------------------------- /VidCoder/Services/HardwareResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/HardwareResourceService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IAppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IAppLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IAppThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IAppThemeService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IAutoPause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IAutoPause.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IDriveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IDriveService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IFileService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IProcesses.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/ISystemOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/ISystemOperations.cs -------------------------------------------------------------------------------- /VidCoder/Services/Interfaces/IUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Interfaces/IUpdater.cs -------------------------------------------------------------------------------- /VidCoder/Services/LocalScanAppLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/LocalScanAppLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/LogCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/LogCoordinator.cs -------------------------------------------------------------------------------- /VidCoder/Services/MessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/MessageBoxService.cs -------------------------------------------------------------------------------- /VidCoder/Services/OutputPathService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/OutputPathService.cs -------------------------------------------------------------------------------- /VidCoder/Services/OutputSizeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/OutputSizeService.cs -------------------------------------------------------------------------------- /VidCoder/Services/PendingAutoChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PendingAutoChange.cs -------------------------------------------------------------------------------- /VidCoder/Services/PickersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PickersService.cs -------------------------------------------------------------------------------- /VidCoder/Services/PresetImportExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PresetImportExport.cs -------------------------------------------------------------------------------- /VidCoder/Services/PresetsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PresetsService.cs -------------------------------------------------------------------------------- /VidCoder/Services/PreviewImageLoadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PreviewImageLoadInfo.cs -------------------------------------------------------------------------------- /VidCoder/Services/PreviewImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PreviewImageService.cs -------------------------------------------------------------------------------- /VidCoder/Services/PreviewImageServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PreviewImageServiceClient.cs -------------------------------------------------------------------------------- /VidCoder/Services/PreviewUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/PreviewUpdateService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Processes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Processes.cs -------------------------------------------------------------------------------- /VidCoder/Services/ProcessingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/ProcessingService.cs -------------------------------------------------------------------------------- /VidCoder/Services/QsvLoadBalancingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/QsvLoadBalancingService.cs -------------------------------------------------------------------------------- /VidCoder/Services/QueueAdderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/QueueAdderService.cs -------------------------------------------------------------------------------- /VidCoder/Services/QueueImportExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/QueueImportExport.cs -------------------------------------------------------------------------------- /VidCoder/Services/QueueWorkTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/QueueWorkTracker.cs -------------------------------------------------------------------------------- /VidCoder/Services/StatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/StatusService.cs -------------------------------------------------------------------------------- /VidCoder/Services/StubLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/StubLogger.cs -------------------------------------------------------------------------------- /VidCoder/Services/SubtitlesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/SubtitlesService.cs -------------------------------------------------------------------------------- /VidCoder/Services/SystemOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/SystemOperations.cs -------------------------------------------------------------------------------- /VidCoder/Services/TaskBarProgressTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/TaskBarProgressTracker.cs -------------------------------------------------------------------------------- /VidCoder/Services/TrayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/TrayService.cs -------------------------------------------------------------------------------- /VidCoder/Services/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Updater.cs -------------------------------------------------------------------------------- /VidCoder/Services/VideoFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/VideoFileFinder.cs -------------------------------------------------------------------------------- /VidCoder/Services/WatchedFileStatusTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/WatchedFileStatusTracker.cs -------------------------------------------------------------------------------- /VidCoder/Services/WatcherProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/WatcherProcessManager.cs -------------------------------------------------------------------------------- /VidCoder/Services/WindowXamlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/WindowXamlHelper.cs -------------------------------------------------------------------------------- /VidCoder/Services/Windows/IClosableWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Windows/IClosableWindow.cs -------------------------------------------------------------------------------- /VidCoder/Services/Windows/IWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Windows/IWindowManager.cs -------------------------------------------------------------------------------- /VidCoder/Services/Windows/WindowDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Windows/WindowDefinition.cs -------------------------------------------------------------------------------- /VidCoder/Services/Windows/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Windows/WindowManager.cs -------------------------------------------------------------------------------- /VidCoder/Services/Windows/WindowPlacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Services/Windows/WindowPlacer.cs -------------------------------------------------------------------------------- /VidCoder/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Settings.cs -------------------------------------------------------------------------------- /VidCoder/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Themes/Dark.xaml -------------------------------------------------------------------------------- /VidCoder/Themes/HighContrast.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Themes/HighContrast.xaml -------------------------------------------------------------------------------- /VidCoder/Themes/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Themes/Light.xaml -------------------------------------------------------------------------------- /VidCoder/Utilities/BitmapUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/BitmapUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/ColorUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/ColorUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/DispatchUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/DispatchUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/DisplayConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/DisplayConversions.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/EnumConverter.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/FileCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/FileCleanup.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/FileOperationApiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/FileOperationApiWrapper.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/ImageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/ImageUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/Ioc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/Ioc.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/LanguageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/LanguageUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/MathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/MathUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/MvvmUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/MvvmUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/NativeMethods.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/ParentProcessUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/ParentProcessUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/ParseUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/ParseUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/PickerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/PickerUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/PresetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/PresetConverter.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/PseudoLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/PseudoLocalizer.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/RefireControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/RefireControl.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/RegistryUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/RegistryUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/ResolutionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/ResolutionUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/SourceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/SourceHistory.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/SystemInputTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/SystemInputTracker.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/SystemPowerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/SystemPowerStatus.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/SystemSleepManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/SystemSleepManagement.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/TrackingStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/TrackingStreamReader.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/UIUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/UIUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/Utilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/VideoCodecUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/VideoCodecUtilities.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/WpfSystemIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/WpfSystemIcons.cs -------------------------------------------------------------------------------- /VidCoder/Utilities/XamlStatics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/Utilities/XamlStatics.cs -------------------------------------------------------------------------------- /VidCoder/VidCoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/VidCoder.csproj -------------------------------------------------------------------------------- /VidCoder/VidCoderInstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/VidCoderInstall.cs -------------------------------------------------------------------------------- /VidCoder/VidCoder_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/VidCoder_icon.ico -------------------------------------------------------------------------------- /VidCoder/View/AboutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/AboutDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/AboutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/AboutDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/AddAutoPauseProcessDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/AddAutoPauseProcessDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/AddAutoPauseProcessDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/AddAutoPauseProcessDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ApplyUpdateConfirmation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ApplyUpdateConfirmation.xaml -------------------------------------------------------------------------------- /VidCoder/View/ApplyUpdateConfirmation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ApplyUpdateConfirmation.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ChapterMarkersDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ChapterMarkersDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/ChapterMarkersDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ChapterMarkersDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ChooseName.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ChooseName.xaml -------------------------------------------------------------------------------- /VidCoder/View/ChooseName.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ChooseName.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ColumnsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ColumnsDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/ColumnsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ColumnsDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/CompareWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/CompareWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/CompareWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/CompareWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/CustomMessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/CustomMessageDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/CustomMessageDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/CustomMessageDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/DebugJsonDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/DebugJsonDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/DebugJsonDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/DebugJsonDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/EncodeDetailsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/EncodeDetailsWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/EncodeDetailsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/EncodeDetailsWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/EncodingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/EncodingWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/EncodingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/EncodingWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ExceptionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ExceptionDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/ExceptionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ExceptionDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/LogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/LogWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/LogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/LogWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Main.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Main.xaml -------------------------------------------------------------------------------- /VidCoder/View/Main.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Main.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/OptionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/OptionsDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/OptionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/OptionsDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/AudioEncodingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/AudioEncodingPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/AudioEncodingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/AudioEncodingPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/AudioPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/AudioPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/AudioPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/AudioPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/ContainerPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/ContainerPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/ContainerPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/ContainerPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/SizingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/SizingPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/SizingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/SizingPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/VideoFiltersPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/VideoFiltersPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/VideoFiltersPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/VideoFiltersPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Panels/VideoPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/VideoPanel.xaml -------------------------------------------------------------------------------- /VidCoder/View/Panels/VideoPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Panels/VideoPanel.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/PickerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/PickerWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/PickerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/PickerWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewCorners.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewCorners.xaml -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewCorners.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewCorners.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewFit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewFit.xaml -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewFit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewFit.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewOneToOne.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewOneToOne.xaml -------------------------------------------------------------------------------- /VidCoder/View/Preview/PreviewOneToOne.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/Preview/PreviewOneToOne.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/PreviewWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/PreviewWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/PreviewWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/PreviewWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/QueueTitlesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/QueueTitlesWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/QueueTitlesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/QueueTitlesWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/ShutdownWarningWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ShutdownWarningWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/ShutdownWarningWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/ShutdownWarningWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/SplashWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/SplashWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/SplashWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/SplashWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/WatcherEditDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/WatcherEditDialog.xaml -------------------------------------------------------------------------------- /VidCoder/View/WatcherEditDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/WatcherEditDialog.xaml.cs -------------------------------------------------------------------------------- /VidCoder/View/WatcherWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/WatcherWindow.xaml -------------------------------------------------------------------------------- /VidCoder/View/WatcherWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/View/WatcherWindow.xaml.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/AboutDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/AboutDialogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/ChooseNameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/ChooseNameViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/ColumnsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/ColumnsDialogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/CompareWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/CompareWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/ChapterViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/ColumnViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/ColumnViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/LogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/LogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/MixdownViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/MixdownViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/PickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/PickerViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/DataModels/PresetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/DataModels/PresetViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/EncodingWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/EncodingWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/ICompareView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/ICompareView.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/IMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/IMainView.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/IPickerWindowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/IPickerWindowView.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/IPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/IPreviewView.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/LogWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/LogWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/OkCancelDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/OkCancelDialogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/OptionsDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/OptionsDialogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/Panels/AudioPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/Panels/AudioPanelViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/Panels/PanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/Panels/PanelViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/Panels/SizingPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/Panels/SizingPanelViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/Panels/VideoPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/Panels/VideoPanelViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/PickerWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/PickerWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/PreviewWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/PreviewWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/ProfileViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/ProfileViewModelBase.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/QueueTitlesWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/QueueTitlesWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/WatcherEditDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/WatcherEditDialogViewModel.cs -------------------------------------------------------------------------------- /VidCoder/ViewModel/WatcherWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/ViewModel/WatcherWindowViewModel.cs -------------------------------------------------------------------------------- /VidCoder/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/WindowPlacement.cs -------------------------------------------------------------------------------- /VidCoder/XamlResources/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/Button.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/CheckBox.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/ComboBox.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/GridViewColumnHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/GridViewColumnHeader.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/ListBox.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/ListView.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/ListViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/ListViewItem.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/PresetComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/PresetComboBox.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/RadioButton.xaml -------------------------------------------------------------------------------- /VidCoder/XamlResources/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/XamlResources/TextBox.xaml -------------------------------------------------------------------------------- /VidCoder/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoder/app.manifest -------------------------------------------------------------------------------- /VidCoderCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCLI/Program.cs -------------------------------------------------------------------------------- /VidCoderCLI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCLI/Properties/launchSettings.json -------------------------------------------------------------------------------- /VidCoderCLI/VidCoderCLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCLI/VidCoderCLI.csproj -------------------------------------------------------------------------------- /VidCoderCommon.Tests/VidCoderCommon.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon.Tests/VidCoderCommon.Tests.csproj -------------------------------------------------------------------------------- /VidCoderCommon/Extensions/FrameRateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Extensions/FrameRateExtensions.cs -------------------------------------------------------------------------------- /VidCoderCommon/Extensions/ParExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Extensions/ParExtensions.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeEncodeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeEncodeWorker.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeEncodeWorkerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeEncodeWorkerCallback.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeScanWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeScanWorker.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeScanWorkerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeScanWorkerCallback.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeWorker.cs -------------------------------------------------------------------------------- /VidCoderCommon/IHandBrakeWorkerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/IHandBrakeWorkerCallback.cs -------------------------------------------------------------------------------- /VidCoderCommon/JsonConverters/VCJobConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/JsonConverters/VCJobConverter.cs -------------------------------------------------------------------------------- /VidCoderCommon/JsonConverters/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/JsonConverters/VersionConverter.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/AudioEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/AudioEncoding.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/AutomationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/AutomationResult.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/CommonDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/CommonDatabase.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/CopyMaskChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/CopyMaskChoice.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/DatabaseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/DatabaseConfig.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/FolderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/FolderType.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/HandBrakeWorkerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/HandBrakeWorkerAction.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/IBasicLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/IBasicLogger.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/ChosenAudioTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/ChosenAudioTrack.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/ChosenSourceSubtitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/ChosenSourceSubtitle.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/FileSubtitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/FileSubtitle.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/JobConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/JobConfiguration.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/SourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/SourceType.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/VCJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/VCJob.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/VCSubtitles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/VCSubtitles.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Job/VideoRangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Job/VideoRangeType.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/JsonEncodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/JsonEncodeFactory.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/OutputAudioTrackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/OutputAudioTrackInfo.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/OutputSizeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/OutputSizeInfo.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/PickerFileFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/PickerFileFilter.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/Preset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/Preset.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCAnamorphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCAnamorphic.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCCropping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCCropping.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCCroppingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCCroppingType.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCDeinterlace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCDeinterlace.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCDenoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCDenoise.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCOutputExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCOutputExtension.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCPadding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCPadding.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCPaddingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCPaddingMode.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCPictureRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCPictureRotation.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCProfile.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCScalingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCScalingMode.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCSharpen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCSharpen.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/Preset/VCSizingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/Preset/VCSizingMode.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/SourcePathWithType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/SourcePathWithType.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/VCEncodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/VCEncodeResult.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatchedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatchedFile.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatchedFileStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatchedFileStatus.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatchedFileStatusReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatchedFileStatusReason.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatchedFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatchedFolder.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatcherMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatcherMode.cs -------------------------------------------------------------------------------- /VidCoderCommon/Model/WatcherStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Model/WatcherStorage.cs -------------------------------------------------------------------------------- /VidCoderCommon/Services/AutomationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Services/AutomationClient.cs -------------------------------------------------------------------------------- /VidCoderCommon/Services/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Services/ILogger.cs -------------------------------------------------------------------------------- /VidCoderCommon/Services/IVidCoderAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Services/IVidCoderAutomation.cs -------------------------------------------------------------------------------- /VidCoderCommon/Services/SupportLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Services/SupportLogger.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/AudioUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/AudioUtilities.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/CommonFileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/CommonFileUtilities.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/CommonUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/CommonUtilities.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/JsonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/JsonOptions.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/MathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/MathUtilities.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/ModelConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/ModelConverters.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/PickerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/PickerDefaults.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/ThreadUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/ThreadUtilities.cs -------------------------------------------------------------------------------- /VidCoderCommon/Utilities/VidCoderLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/Utilities/VidCoderLauncher.cs -------------------------------------------------------------------------------- /VidCoderCommon/VidCoderCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderCommon/VidCoderCommon.csproj -------------------------------------------------------------------------------- /VidCoderFileWatcher/Model/IWatcherCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Model/IWatcherCommands.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Model/StrippedPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Model/StrippedPicker.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Model/WatcherDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Model/WatcherDatabase.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Model/WatcherRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Model/WatcherRepository.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Program.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Services/FolderEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Services/FolderEnumerator.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/Services/WatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/Services/WatcherService.cs -------------------------------------------------------------------------------- /VidCoderFileWatcher/VidCoderFileWatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderFileWatcher/VidCoderFileWatcher.csproj -------------------------------------------------------------------------------- /VidCoderWindowlessCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWindowlessCLI/Program.cs -------------------------------------------------------------------------------- /VidCoderWorker/EncodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/EncodeState.cs -------------------------------------------------------------------------------- /VidCoderWorker/HandBrakeEncodeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/HandBrakeEncodeWorker.cs -------------------------------------------------------------------------------- /VidCoderWorker/HandBrakeScanWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/HandBrakeScanWorker.cs -------------------------------------------------------------------------------- /VidCoderWorker/HandBrakeWorkerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/HandBrakeWorkerBase.cs -------------------------------------------------------------------------------- /VidCoderWorker/PreviewImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/PreviewImage.cs -------------------------------------------------------------------------------- /VidCoderWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/Program.cs -------------------------------------------------------------------------------- /VidCoderWorker/VidCoderWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/VidCoderWorker.csproj -------------------------------------------------------------------------------- /VidCoderWorker/VidCoderWorker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/VidCoderWorker.ico -------------------------------------------------------------------------------- /VidCoderWorker/WorkerErrorLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/WorkerErrorLogger.cs -------------------------------------------------------------------------------- /VidCoderWorker/WorkerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/VidCoderWorker/WorkerLogger.cs -------------------------------------------------------------------------------- /update_hbdll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandomEngy/VidCoder/HEAD/update_hbdll.ps1 --------------------------------------------------------------------------------