├── README.md ├── gpl.txt ├── subs2srs.sln └── subs2srs ├── Art ├── About.png ├── Logo.png ├── Logo16.png ├── Logo32.png ├── Logo64.png ├── LogoFinal.png └── Thumbs.db ├── DialogAbout.Designer.cs ├── DialogAbout.cs ├── DialogAbout.resx ├── DialogAdvancedSubtitleOptions.Designer.cs ├── DialogAdvancedSubtitleOptions.cs ├── DialogAdvancedSubtitleOptions.resx ├── DialogDuelingSubtitles.Designer.cs ├── DialogDuelingSubtitles.cs ├── DialogDuelingSubtitles.resx ├── DialogExtractAudioFromMedia.Designer.cs ├── DialogExtractAudioFromMedia.cs ├── DialogExtractAudioFromMedia.resx ├── DialogMkvExtract.Designer.cs ├── DialogMkvExtract.cs ├── DialogMkvExtract.resx ├── DialogPref.Designer.cs ├── DialogPref.cs ├── DialogPref.resx ├── DialogPreview.Designer.cs ├── DialogPreview.cs ├── DialogPreview.resx ├── DialogPreviewSnapshot.Designer.cs ├── DialogPreviewSnapshot.cs ├── DialogPreviewSnapshot.resx ├── DialogProgress.Designer.cs ├── DialogProgress.cs ├── DialogProgress.resx ├── DialogSelectMkvTrack.Designer.cs ├── DialogSelectMkvTrack.cs ├── DialogSelectMkvTrack.resx ├── DialogSubtitleStyle.Designer.cs ├── DialogSubtitleStyle.cs ├── DialogSubtitleStyle.resx ├── DialogVideoDimensionsChooser.Designer.cs ├── DialogVideoDimensionsChooser.cs ├── DialogVideoDimensionsChooser.resx ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── GroupBoxCheck.Designer.cs ├── GroupBoxCheck.cs ├── GroupBoxCheck.resx ├── InfoCombined.cs ├── InfoEncoding.cs ├── InfoFFmpegProgress.cs ├── InfoLine.cs ├── InfoStream.cs ├── InfoStyle.cs ├── Logger.cs ├── ObjectCloner.cs ├── PrefIO.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── PropertyBag.cs ├── Resources ├── About.png └── Icon.ico ├── Settings.cs ├── SubsParser.cs ├── SubsParserASS.cs ├── SubsParserLyrics.cs ├── SubsParserSRT.cs ├── SubsParserTranscriber.cs ├── SubsParserVOBSUB.cs ├── SubsProcessor.cs ├── SubtitleCreator ├── SubtitleCreatorMemWriter.cs └── SubtitleCreatorSUP.cs ├── UtilsAssembly.cs ├── UtilsAudio.cs ├── UtilsCommon.cs ├── UtilsLang.cs ├── UtilsMkv.cs ├── UtilsMsg.cs ├── UtilsName.cs ├── UtilsSnapshot.cs ├── UtilsSubs.cs ├── UtilsVideo.cs ├── WorkerAudio.cs ├── WorkerSnapshot.cs ├── WorkerSrs.cs ├── WorkerSubs.cs ├── WorkerVars.cs ├── WorkerVideo.cs ├── subs2srs.csproj └── subs2srs.csproj.user /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/README.md -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/gpl.txt -------------------------------------------------------------------------------- /subs2srs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs.sln -------------------------------------------------------------------------------- /subs2srs/Art/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/About.png -------------------------------------------------------------------------------- /subs2srs/Art/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/Logo.png -------------------------------------------------------------------------------- /subs2srs/Art/Logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/Logo16.png -------------------------------------------------------------------------------- /subs2srs/Art/Logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/Logo32.png -------------------------------------------------------------------------------- /subs2srs/Art/Logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/Logo64.png -------------------------------------------------------------------------------- /subs2srs/Art/LogoFinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/LogoFinal.png -------------------------------------------------------------------------------- /subs2srs/Art/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Art/Thumbs.db -------------------------------------------------------------------------------- /subs2srs/DialogAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAbout.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAbout.cs -------------------------------------------------------------------------------- /subs2srs/DialogAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAbout.resx -------------------------------------------------------------------------------- /subs2srs/DialogAdvancedSubtitleOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAdvancedSubtitleOptions.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogAdvancedSubtitleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAdvancedSubtitleOptions.cs -------------------------------------------------------------------------------- /subs2srs/DialogAdvancedSubtitleOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogAdvancedSubtitleOptions.resx -------------------------------------------------------------------------------- /subs2srs/DialogDuelingSubtitles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogDuelingSubtitles.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogDuelingSubtitles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogDuelingSubtitles.cs -------------------------------------------------------------------------------- /subs2srs/DialogDuelingSubtitles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogDuelingSubtitles.resx -------------------------------------------------------------------------------- /subs2srs/DialogExtractAudioFromMedia.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogExtractAudioFromMedia.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogExtractAudioFromMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogExtractAudioFromMedia.cs -------------------------------------------------------------------------------- /subs2srs/DialogExtractAudioFromMedia.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogExtractAudioFromMedia.resx -------------------------------------------------------------------------------- /subs2srs/DialogMkvExtract.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogMkvExtract.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogMkvExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogMkvExtract.cs -------------------------------------------------------------------------------- /subs2srs/DialogMkvExtract.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogMkvExtract.resx -------------------------------------------------------------------------------- /subs2srs/DialogPref.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPref.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogPref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPref.cs -------------------------------------------------------------------------------- /subs2srs/DialogPref.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPref.resx -------------------------------------------------------------------------------- /subs2srs/DialogPreview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreview.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreview.cs -------------------------------------------------------------------------------- /subs2srs/DialogPreview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreview.resx -------------------------------------------------------------------------------- /subs2srs/DialogPreviewSnapshot.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreviewSnapshot.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogPreviewSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreviewSnapshot.cs -------------------------------------------------------------------------------- /subs2srs/DialogPreviewSnapshot.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogPreviewSnapshot.resx -------------------------------------------------------------------------------- /subs2srs/DialogProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogProgress.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogProgress.cs -------------------------------------------------------------------------------- /subs2srs/DialogProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogProgress.resx -------------------------------------------------------------------------------- /subs2srs/DialogSelectMkvTrack.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSelectMkvTrack.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogSelectMkvTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSelectMkvTrack.cs -------------------------------------------------------------------------------- /subs2srs/DialogSelectMkvTrack.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSelectMkvTrack.resx -------------------------------------------------------------------------------- /subs2srs/DialogSubtitleStyle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSubtitleStyle.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogSubtitleStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSubtitleStyle.cs -------------------------------------------------------------------------------- /subs2srs/DialogSubtitleStyle.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogSubtitleStyle.resx -------------------------------------------------------------------------------- /subs2srs/DialogVideoDimensionsChooser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogVideoDimensionsChooser.Designer.cs -------------------------------------------------------------------------------- /subs2srs/DialogVideoDimensionsChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogVideoDimensionsChooser.cs -------------------------------------------------------------------------------- /subs2srs/DialogVideoDimensionsChooser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/DialogVideoDimensionsChooser.resx -------------------------------------------------------------------------------- /subs2srs/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/FormMain.Designer.cs -------------------------------------------------------------------------------- /subs2srs/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/FormMain.cs -------------------------------------------------------------------------------- /subs2srs/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/FormMain.resx -------------------------------------------------------------------------------- /subs2srs/GroupBoxCheck.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/GroupBoxCheck.Designer.cs -------------------------------------------------------------------------------- /subs2srs/GroupBoxCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/GroupBoxCheck.cs -------------------------------------------------------------------------------- /subs2srs/GroupBoxCheck.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/GroupBoxCheck.resx -------------------------------------------------------------------------------- /subs2srs/InfoCombined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoCombined.cs -------------------------------------------------------------------------------- /subs2srs/InfoEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoEncoding.cs -------------------------------------------------------------------------------- /subs2srs/InfoFFmpegProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoFFmpegProgress.cs -------------------------------------------------------------------------------- /subs2srs/InfoLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoLine.cs -------------------------------------------------------------------------------- /subs2srs/InfoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoStream.cs -------------------------------------------------------------------------------- /subs2srs/InfoStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/InfoStyle.cs -------------------------------------------------------------------------------- /subs2srs/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Logger.cs -------------------------------------------------------------------------------- /subs2srs/ObjectCloner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/ObjectCloner.cs -------------------------------------------------------------------------------- /subs2srs/PrefIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/PrefIO.cs -------------------------------------------------------------------------------- /subs2srs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Program.cs -------------------------------------------------------------------------------- /subs2srs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /subs2srs/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /subs2srs/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Properties/Resources.resx -------------------------------------------------------------------------------- /subs2srs/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /subs2srs/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Properties/Settings.settings -------------------------------------------------------------------------------- /subs2srs/PropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/PropertyBag.cs -------------------------------------------------------------------------------- /subs2srs/Resources/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Resources/About.png -------------------------------------------------------------------------------- /subs2srs/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Resources/Icon.ico -------------------------------------------------------------------------------- /subs2srs/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/Settings.cs -------------------------------------------------------------------------------- /subs2srs/SubsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParser.cs -------------------------------------------------------------------------------- /subs2srs/SubsParserASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParserASS.cs -------------------------------------------------------------------------------- /subs2srs/SubsParserLyrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParserLyrics.cs -------------------------------------------------------------------------------- /subs2srs/SubsParserSRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParserSRT.cs -------------------------------------------------------------------------------- /subs2srs/SubsParserTranscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParserTranscriber.cs -------------------------------------------------------------------------------- /subs2srs/SubsParserVOBSUB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsParserVOBSUB.cs -------------------------------------------------------------------------------- /subs2srs/SubsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubsProcessor.cs -------------------------------------------------------------------------------- /subs2srs/SubtitleCreator/SubtitleCreatorMemWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubtitleCreator/SubtitleCreatorMemWriter.cs -------------------------------------------------------------------------------- /subs2srs/SubtitleCreator/SubtitleCreatorSUP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/SubtitleCreator/SubtitleCreatorSUP.cs -------------------------------------------------------------------------------- /subs2srs/UtilsAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsAssembly.cs -------------------------------------------------------------------------------- /subs2srs/UtilsAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsAudio.cs -------------------------------------------------------------------------------- /subs2srs/UtilsCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsCommon.cs -------------------------------------------------------------------------------- /subs2srs/UtilsLang.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsLang.cs -------------------------------------------------------------------------------- /subs2srs/UtilsMkv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsMkv.cs -------------------------------------------------------------------------------- /subs2srs/UtilsMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsMsg.cs -------------------------------------------------------------------------------- /subs2srs/UtilsName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsName.cs -------------------------------------------------------------------------------- /subs2srs/UtilsSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsSnapshot.cs -------------------------------------------------------------------------------- /subs2srs/UtilsSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsSubs.cs -------------------------------------------------------------------------------- /subs2srs/UtilsVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/UtilsVideo.cs -------------------------------------------------------------------------------- /subs2srs/WorkerAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerAudio.cs -------------------------------------------------------------------------------- /subs2srs/WorkerSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerSnapshot.cs -------------------------------------------------------------------------------- /subs2srs/WorkerSrs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerSrs.cs -------------------------------------------------------------------------------- /subs2srs/WorkerSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerSubs.cs -------------------------------------------------------------------------------- /subs2srs/WorkerVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerVars.cs -------------------------------------------------------------------------------- /subs2srs/WorkerVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/WorkerVideo.cs -------------------------------------------------------------------------------- /subs2srs/subs2srs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/subs2srs.csproj -------------------------------------------------------------------------------- /subs2srs/subs2srs.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjiang/subs2srs/HEAD/subs2srs/subs2srs.csproj.user --------------------------------------------------------------------------------