├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── IFME.FFmpeg ├── AutoDetect.cs ├── FormatId.cs ├── IFME.FFmpeg.csproj ├── MediaInfo.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadFile.cs ├── Stream.cs └── packages.config ├── IFME.OSManager ├── API │ ├── Linux.cs │ └── Windows.cs ├── AppPath.cs ├── CPU.cs ├── IFME.OSManager.csproj ├── InputBox.Designer.cs ├── InputBox.cs ├── InputBox.resx ├── InputBox2.Designer.cs ├── InputBox2.cs ├── InputBox2.resx ├── OS.cs ├── ProcessEx.cs ├── ProgressBar.Designer.cs ├── ProgressBar.cs ├── ProgressBar.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RandomGen.cs └── Resources │ └── Rename.ico ├── IFME.sln ├── IFME ├── App.config ├── ArgsParser.cs ├── BackgroundWorker2.cs ├── Extensions.cs ├── Fonts.cs ├── IFME.csproj ├── Images.cs ├── Language.cs ├── Language.json ├── MediaContainer.cs ├── MediaEncoding.cs ├── MediaQueue │ ├── MediaQueue.cs │ ├── MediaQueueAttachment.cs │ ├── MediaQueueAudio.cs │ ├── MediaQueueSubtitle.cs │ └── MediaQueueVideo.cs ├── Mime.cs ├── Mime.json ├── Plugins │ ├── Plugins.cs │ ├── PluginsAudio.cs │ ├── PluginsLoad.cs │ └── PluginsVideo.cs ├── ProcessManager.cs ├── Profiles │ ├── Profile_0000-00-00_00-00-00_0000.json │ ├── Profile_0000-00-00_00-00-00_0001.json │ ├── Profile_0000-00-00_00-00-00_0002.json │ ├── Profile_0000-00-00_00-00-00_0003.json │ ├── Profile_0000-00-00_00-00-00_0004.json │ ├── Profile_0000-00-00_00-00-00_0005.json │ ├── Profile_0000-00-00_00-00-00_0006.json │ ├── Profile_1000-00-00_00-00-00_0000.json │ ├── Profile_1000-00-00_00-00-00_0001.json │ ├── Profile_1000-00-00_00-00-00_0002.json │ ├── Profiles.cs │ ├── ProfilesAudio.cs │ ├── ProfilesManager.cs │ ├── ProfilesVideo.cs │ ├── longwu9t_mpeg-legacy_os.json │ └── longwu9t_wmv-mso_pp.json ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Avatar1_Ichika.png │ ├── Avatar2_Fumiko.png │ ├── Avatar3_Miho.png │ ├── Avatar4_Erika.png │ ├── Banner_2a.png │ ├── Banner_2b.png │ ├── Banner_4a.png │ ├── Banner_About.png │ ├── InnoSetup │ │ ├── SetupIcon.ico │ │ ├── WizModernImage-IS.png │ │ └── WizModernSmallImage-IS.png │ ├── SplashScreen10.png │ ├── SplashScreen11.png │ ├── SplashScreen12.png │ ├── SplashScreen13.png │ ├── SplashScreen14.png │ ├── SplashScreen8.jpg │ ├── SplashScreen9.jpg │ ├── i18n │ │ ├── IFME_en-US.png │ │ ├── IFME_ja-JP.png │ │ ├── IFME_ms-MY.png │ │ └── IFME_zh-CN.png │ └── ifme-zenui.ico ├── Version.cs ├── WAD.cs ├── WindowUtils.cs ├── app.manifest ├── frmAbout.Designer.cs ├── frmAbout.cs ├── frmAbout.resx ├── frmImportImageSeq.Designer.cs ├── frmImportImageSeq.cs ├── frmImportImageSeq.resx ├── frmMain.Designer.cs ├── frmMain.Function.cs ├── frmMain.Status.cs ├── frmMain.cs ├── frmMain.resx ├── frmOptions.Designer.cs ├── frmOptions.cs ├── frmOptions.resx ├── frmProgressBar.Designer.cs ├── frmProgressBar.cs ├── frmProgressBar.resx ├── frmSplashScreen.Designer.cs ├── frmSplashScreen.Status.cs ├── frmSplashScreen.cs ├── frmSplashScreen.resx ├── i18n.cs ├── i18n │ ├── en-US.json │ ├── ja-JP.json │ ├── ja-JP_neta.json │ ├── ms-MY.json │ └── zh-CN.json ├── i18nObj.cs ├── i18nUI.cs └── packages.config ├── LICENSE.md ├── NDesk.Options ├── NDesk.Options.csproj ├── Options.cs └── Properties │ └── AssemblyInfo.cs ├── Native ├── ifme_linux ├── ifme_linux.c ├── libcpufeature.c ├── libcpufeature.dll ├── libcpufeature.rc └── libcpufeature.so ├── PATENTS.md ├── README.md ├── README_ja-JP.md ├── README_ms-MY.md ├── README_zh-CN.md ├── changelog.txt ├── installer.iss └── version.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/.gitignore -------------------------------------------------------------------------------- /IFME.FFmpeg/AutoDetect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/AutoDetect.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/FormatId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/FormatId.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/IFME.FFmpeg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/IFME.FFmpeg.csproj -------------------------------------------------------------------------------- /IFME.FFmpeg/MediaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/MediaInfo.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/ReadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/ReadFile.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/Stream.cs -------------------------------------------------------------------------------- /IFME.FFmpeg/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.FFmpeg/packages.config -------------------------------------------------------------------------------- /IFME.OSManager/API/Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/API/Linux.cs -------------------------------------------------------------------------------- /IFME.OSManager/API/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/API/Windows.cs -------------------------------------------------------------------------------- /IFME.OSManager/AppPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/AppPath.cs -------------------------------------------------------------------------------- /IFME.OSManager/CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/CPU.cs -------------------------------------------------------------------------------- /IFME.OSManager/IFME.OSManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/IFME.OSManager.csproj -------------------------------------------------------------------------------- /IFME.OSManager/InputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox.Designer.cs -------------------------------------------------------------------------------- /IFME.OSManager/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox.cs -------------------------------------------------------------------------------- /IFME.OSManager/InputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox.resx -------------------------------------------------------------------------------- /IFME.OSManager/InputBox2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox2.Designer.cs -------------------------------------------------------------------------------- /IFME.OSManager/InputBox2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox2.cs -------------------------------------------------------------------------------- /IFME.OSManager/InputBox2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/InputBox2.resx -------------------------------------------------------------------------------- /IFME.OSManager/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/OS.cs -------------------------------------------------------------------------------- /IFME.OSManager/ProcessEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/ProcessEx.cs -------------------------------------------------------------------------------- /IFME.OSManager/ProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/ProgressBar.Designer.cs -------------------------------------------------------------------------------- /IFME.OSManager/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/ProgressBar.cs -------------------------------------------------------------------------------- /IFME.OSManager/ProgressBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/ProgressBar.resx -------------------------------------------------------------------------------- /IFME.OSManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IFME.OSManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IFME.OSManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/Properties/Resources.resx -------------------------------------------------------------------------------- /IFME.OSManager/RandomGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/RandomGen.cs -------------------------------------------------------------------------------- /IFME.OSManager/Resources/Rename.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.OSManager/Resources/Rename.ico -------------------------------------------------------------------------------- /IFME.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME.sln -------------------------------------------------------------------------------- /IFME/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/App.config -------------------------------------------------------------------------------- /IFME/ArgsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/ArgsParser.cs -------------------------------------------------------------------------------- /IFME/BackgroundWorker2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/BackgroundWorker2.cs -------------------------------------------------------------------------------- /IFME/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Extensions.cs -------------------------------------------------------------------------------- /IFME/Fonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Fonts.cs -------------------------------------------------------------------------------- /IFME/IFME.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/IFME.csproj -------------------------------------------------------------------------------- /IFME/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Images.cs -------------------------------------------------------------------------------- /IFME/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Language.cs -------------------------------------------------------------------------------- /IFME/Language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Language.json -------------------------------------------------------------------------------- /IFME/MediaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaContainer.cs -------------------------------------------------------------------------------- /IFME/MediaEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaEncoding.cs -------------------------------------------------------------------------------- /IFME/MediaQueue/MediaQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaQueue/MediaQueue.cs -------------------------------------------------------------------------------- /IFME/MediaQueue/MediaQueueAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaQueue/MediaQueueAttachment.cs -------------------------------------------------------------------------------- /IFME/MediaQueue/MediaQueueAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaQueue/MediaQueueAudio.cs -------------------------------------------------------------------------------- /IFME/MediaQueue/MediaQueueSubtitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaQueue/MediaQueueSubtitle.cs -------------------------------------------------------------------------------- /IFME/MediaQueue/MediaQueueVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/MediaQueue/MediaQueueVideo.cs -------------------------------------------------------------------------------- /IFME/Mime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Mime.cs -------------------------------------------------------------------------------- /IFME/Mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Mime.json -------------------------------------------------------------------------------- /IFME/Plugins/Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Plugins/Plugins.cs -------------------------------------------------------------------------------- /IFME/Plugins/PluginsAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Plugins/PluginsAudio.cs -------------------------------------------------------------------------------- /IFME/Plugins/PluginsLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Plugins/PluginsLoad.cs -------------------------------------------------------------------------------- /IFME/Plugins/PluginsVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Plugins/PluginsVideo.cs -------------------------------------------------------------------------------- /IFME/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/ProcessManager.cs -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0000.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0001.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0002.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0003.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0004.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0005.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_0000-00-00_00-00-00_0006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_0000-00-00_00-00-00_0006.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_1000-00-00_00-00-00_0000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_1000-00-00_00-00-00_0000.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_1000-00-00_00-00-00_0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_1000-00-00_00-00-00_0001.json -------------------------------------------------------------------------------- /IFME/Profiles/Profile_1000-00-00_00-00-00_0002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profile_1000-00-00_00-00-00_0002.json -------------------------------------------------------------------------------- /IFME/Profiles/Profiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/Profiles.cs -------------------------------------------------------------------------------- /IFME/Profiles/ProfilesAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/ProfilesAudio.cs -------------------------------------------------------------------------------- /IFME/Profiles/ProfilesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/ProfilesManager.cs -------------------------------------------------------------------------------- /IFME/Profiles/ProfilesVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/ProfilesVideo.cs -------------------------------------------------------------------------------- /IFME/Profiles/longwu9t_mpeg-legacy_os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/longwu9t_mpeg-legacy_os.json -------------------------------------------------------------------------------- /IFME/Profiles/longwu9t_wmv-mso_pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Profiles/longwu9t_wmv-mso_pp.json -------------------------------------------------------------------------------- /IFME/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Program.cs -------------------------------------------------------------------------------- /IFME/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IFME/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IFME/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Properties/Resources.resx -------------------------------------------------------------------------------- /IFME/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /IFME/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Properties/Settings.settings -------------------------------------------------------------------------------- /IFME/Resources/Avatar1_Ichika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Avatar1_Ichika.png -------------------------------------------------------------------------------- /IFME/Resources/Avatar2_Fumiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Avatar2_Fumiko.png -------------------------------------------------------------------------------- /IFME/Resources/Avatar3_Miho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Avatar3_Miho.png -------------------------------------------------------------------------------- /IFME/Resources/Avatar4_Erika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Avatar4_Erika.png -------------------------------------------------------------------------------- /IFME/Resources/Banner_2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Banner_2a.png -------------------------------------------------------------------------------- /IFME/Resources/Banner_2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Banner_2b.png -------------------------------------------------------------------------------- /IFME/Resources/Banner_4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Banner_4a.png -------------------------------------------------------------------------------- /IFME/Resources/Banner_About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/Banner_About.png -------------------------------------------------------------------------------- /IFME/Resources/InnoSetup/SetupIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/InnoSetup/SetupIcon.ico -------------------------------------------------------------------------------- /IFME/Resources/InnoSetup/WizModernImage-IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/InnoSetup/WizModernImage-IS.png -------------------------------------------------------------------------------- /IFME/Resources/InnoSetup/WizModernSmallImage-IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/InnoSetup/WizModernSmallImage-IS.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen10.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen11.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen12.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen13.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen14.png -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen8.jpg -------------------------------------------------------------------------------- /IFME/Resources/SplashScreen9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/SplashScreen9.jpg -------------------------------------------------------------------------------- /IFME/Resources/i18n/IFME_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/i18n/IFME_en-US.png -------------------------------------------------------------------------------- /IFME/Resources/i18n/IFME_ja-JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/i18n/IFME_ja-JP.png -------------------------------------------------------------------------------- /IFME/Resources/i18n/IFME_ms-MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/i18n/IFME_ms-MY.png -------------------------------------------------------------------------------- /IFME/Resources/i18n/IFME_zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/i18n/IFME_zh-CN.png -------------------------------------------------------------------------------- /IFME/Resources/ifme-zenui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Resources/ifme-zenui.ico -------------------------------------------------------------------------------- /IFME/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/Version.cs -------------------------------------------------------------------------------- /IFME/WAD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/WAD.cs -------------------------------------------------------------------------------- /IFME/WindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/WindowUtils.cs -------------------------------------------------------------------------------- /IFME/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/app.manifest -------------------------------------------------------------------------------- /IFME/frmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmAbout.Designer.cs -------------------------------------------------------------------------------- /IFME/frmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmAbout.cs -------------------------------------------------------------------------------- /IFME/frmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmAbout.resx -------------------------------------------------------------------------------- /IFME/frmImportImageSeq.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmImportImageSeq.Designer.cs -------------------------------------------------------------------------------- /IFME/frmImportImageSeq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmImportImageSeq.cs -------------------------------------------------------------------------------- /IFME/frmImportImageSeq.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmImportImageSeq.resx -------------------------------------------------------------------------------- /IFME/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmMain.Designer.cs -------------------------------------------------------------------------------- /IFME/frmMain.Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmMain.Function.cs -------------------------------------------------------------------------------- /IFME/frmMain.Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmMain.Status.cs -------------------------------------------------------------------------------- /IFME/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmMain.cs -------------------------------------------------------------------------------- /IFME/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmMain.resx -------------------------------------------------------------------------------- /IFME/frmOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmOptions.Designer.cs -------------------------------------------------------------------------------- /IFME/frmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmOptions.cs -------------------------------------------------------------------------------- /IFME/frmOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmOptions.resx -------------------------------------------------------------------------------- /IFME/frmProgressBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmProgressBar.Designer.cs -------------------------------------------------------------------------------- /IFME/frmProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmProgressBar.cs -------------------------------------------------------------------------------- /IFME/frmProgressBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmProgressBar.resx -------------------------------------------------------------------------------- /IFME/frmSplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmSplashScreen.Designer.cs -------------------------------------------------------------------------------- /IFME/frmSplashScreen.Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmSplashScreen.Status.cs -------------------------------------------------------------------------------- /IFME/frmSplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmSplashScreen.cs -------------------------------------------------------------------------------- /IFME/frmSplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/frmSplashScreen.resx -------------------------------------------------------------------------------- /IFME/i18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n.cs -------------------------------------------------------------------------------- /IFME/i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n/en-US.json -------------------------------------------------------------------------------- /IFME/i18n/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n/ja-JP.json -------------------------------------------------------------------------------- /IFME/i18n/ja-JP_neta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n/ja-JP_neta.json -------------------------------------------------------------------------------- /IFME/i18n/ms-MY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n/ms-MY.json -------------------------------------------------------------------------------- /IFME/i18n/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18n/zh-CN.json -------------------------------------------------------------------------------- /IFME/i18nObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18nObj.cs -------------------------------------------------------------------------------- /IFME/i18nUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/i18nUI.cs -------------------------------------------------------------------------------- /IFME/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/IFME/packages.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NDesk.Options/NDesk.Options.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/NDesk.Options/NDesk.Options.csproj -------------------------------------------------------------------------------- /NDesk.Options/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/NDesk.Options/Options.cs -------------------------------------------------------------------------------- /NDesk.Options/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/NDesk.Options/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native/ifme_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/ifme_linux -------------------------------------------------------------------------------- /Native/ifme_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/ifme_linux.c -------------------------------------------------------------------------------- /Native/libcpufeature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/libcpufeature.c -------------------------------------------------------------------------------- /Native/libcpufeature.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/libcpufeature.dll -------------------------------------------------------------------------------- /Native/libcpufeature.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/libcpufeature.rc -------------------------------------------------------------------------------- /Native/libcpufeature.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/Native/libcpufeature.so -------------------------------------------------------------------------------- /PATENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/PATENTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/README.md -------------------------------------------------------------------------------- /README_ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/README_ja-JP.md -------------------------------------------------------------------------------- /README_ms-MY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/README_ms-MY.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/changelog.txt -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anime4000/IFME/HEAD/installer.iss -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 8.6.3 --------------------------------------------------------------------------------