├── N_m3u8DL-CLI-SimpleG ├── Properties │ ├── Resources.en-US.Designer.cs │ ├── Resources.zh-TW.Designer.cs │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.resx │ ├── Resources.zh-TW.resx │ ├── Resources.en-US.resx │ └── Resources.Designer.cs ├── logo_3Iv_icon.ico ├── packages.config ├── App.config ├── App.xaml ├── App.xaml.cs ├── N_m3u8DL-CLI-SimpleG.csproj ├── MainWindow.xaml └── MainWindow.xaml.cs ├── README.md ├── LICENSE ├── N_m3u8DL-CLI-SimpleG.sln ├── .gitattributes └── .gitignore /N_m3u8DL-CLI-SimpleG/Properties/Resources.en-US.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Resources.zh-TW.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/logo_3Iv_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilaoda/N_m3u8DL-CLI-SimpleG/HEAD/N_m3u8DL-CLI-SimpleG/logo_3Iv_icon.ico -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # N_m3u8DL-CLI-SimpleG 2 | N_m3u8DL-CLI's simple GUI 3 | 4 | --- 5 | 6 | 对应命令行工具:https://github.com/nilaoda/N_m3u8DL-CLI 7 | 8 | 相关说明:https://nilaoda.github.io/N_m3u8DL-CLI/SimpleGUI.html 9 | 10 | 没什么精力维护,开源 11 | 12 | ![image](https://user-images.githubusercontent.com/20772925/153235235-712b338e-4e2a-4a77-8b3b-119bceb45f24.png) 13 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Globalization; 6 | using System.Linq; 7 | using System.Threading; 8 | using System.Threading.Tasks; 9 | using System.Windows; 10 | 11 | namespace N_m3u8DL_CLI_SimpleG 12 | { 13 | /// 14 | /// App.xaml 的交互逻辑 15 | /// 16 | public partial class App : Application 17 | { 18 | protected override void OnStartup(StartupEventArgs e) 19 | { 20 | string loc = "en-US"; 21 | string currLoc = Thread.CurrentThread.CurrentUICulture.Name; 22 | if (currLoc == "zh-TW" || currLoc == "zh-HK" || currLoc == "zh-MO") loc = "zh-TW"; 23 | else if (currLoc == "zh-CN" || currLoc == "zh-SG") loc = "zh-CN"; 24 | //设置语言 25 | Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(loc); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace N_m3u8DL_CLI_SimpleG.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.3.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 nilaoda 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29009.5 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "N_m3u8DL-CLI-SimpleG", "N_m3u8DL-CLI-SimpleG\N_m3u8DL-CLI-SimpleG.csproj", "{527FA325-6ECD-40FB-A108-8C2747AE6BCD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {527FA325-6ECD-40FB-A108-8C2747AE6BCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {527FA325-6ECD-40FB-A108-8C2747AE6BCD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {527FA325-6ECD-40FB-A108-8C2747AE6BCD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {527FA325-6ECD-40FB-A108-8C2747AE6BCD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2AE62102-3D14-448F-8C53-811AF11AB5D3} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // 有关程序集的一般信息由以下 8 | // 控制。更改这些特性值可修改 9 | // 与程序集关联的信息。 10 | [assembly: AssemblyTitle("N_m3u8DL-CLI-SimpleG")] 11 | [assembly: AssemblyDescription("N_m3u8DL-CLI的简易GUI程序")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("nilaoda")] 14 | [assembly: AssemblyProduct("N_m3u8DL-CLI-SimpleG")] 15 | [assembly: AssemblyCopyright("Copyright © 2022")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // 将 ComVisible 设置为 false 会使此程序集中的类型 20 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 21 | //请将此类型的 ComVisible 特性设置为 true。 22 | [assembly: ComVisible(false)] 23 | 24 | //若要开始生成可本地化的应用程序,请设置 25 | //.csproj 文件中的 CultureYouAreCodingWith 26 | //例如,如果您在源文件中使用的是美国英语, 27 | //使用的是美国英语,请将 设置为 en-US。 然后取消 28 | //对以下 NeutralResourceLanguage 特性的注释。 更新 29 | //以下行中的“en-US”以匹配项目文件中的 UICulture 设置。 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //主题特定资源词典所处位置 36 | //(未在页面中找到资源时使用, 37 | //或应用程序资源字典中找到时使用) 38 | ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 39 | //(未在页面中找到资源时使用, 40 | //、应用程序或任何主题专用资源字典中找到时使用) 41 | )] 42 | 43 | 44 | // 程序集的版本信息由下列四个值组成: 45 | // 46 | // 主版本 47 | // 次版本 48 | // 生成号 49 | // 修订号 50 | // 51 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 52 | //通过使用 "*",如下所示: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/N_m3u8DL-CLI-SimpleG.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {527FA325-6ECD-40FB-A108-8C2747AE6BCD} 9 | WinExe 10 | N_m3u8DL_CLI_SimpleG 11 | N_m3u8DL-CLI-SimpleG 12 | v4.6 13 | 512 14 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 15 | 4 16 | true 17 | true 18 | 19 | 20 | false 21 | publish\ 22 | true 23 | Disk 24 | false 25 | Foreground 26 | 7 27 | Days 28 | false 29 | false 30 | true 31 | 0 32 | 1.0.0.%2a 33 | false 34 | true 35 | true 36 | 37 | 38 | 39 | 40 | AnyCPU 41 | true 42 | full 43 | false 44 | bin\Debug\ 45 | DEBUG;TRACE 46 | prompt 47 | 4 48 | false 49 | 50 | 51 | AnyCPU 52 | pdbonly 53 | true 54 | bin\Release\ 55 | TRACE 56 | prompt 57 | 4 58 | false 59 | 60 | 61 | logo_3Iv_icon.ico 62 | 63 | 64 | 65 | true 66 | 67 | 68 | E5E1164B3AE3A1D2A8D7B48ACB87479F6DB77431 69 | 70 | 71 | N_m3u8DL-CLI-SimpleG_TemporaryKey.pfx 72 | 73 | 74 | true 75 | 76 | 77 | false 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 4.0 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | MSBuild:Compile 99 | Designer 100 | 101 | 102 | MSBuild:Compile 103 | Designer 104 | 105 | 106 | App.xaml 107 | Code 108 | 109 | 110 | MainWindow.xaml 111 | Code 112 | 113 | 114 | 115 | 116 | Code 117 | 118 | 119 | True 120 | True 121 | Resources.resx 122 | 123 | 124 | True 125 | True 126 | Resources.en-US.resx 127 | 128 | 129 | True 130 | True 131 | Resources.zh-TW.resx 132 | 133 | 134 | True 135 | Settings.settings 136 | True 137 | 138 | 139 | PublicResXFileCodeGenerator 140 | Resources.en-US.Designer.cs 141 | 142 | 143 | PublicResXFileCodeGenerator 144 | Resources.Designer.cs 145 | 146 | 147 | PublicResXFileCodeGenerator 148 | Resources.zh-TW.Designer.cs 149 | 150 | 151 | 152 | 153 | SettingsSingleFileGenerator 154 | Settings.Designer.cs 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | False 166 | .NET Framework 3.5 SP1 167 | false 168 | 169 | 170 | 171 | 172 | 173 | 这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 仅合并音频轨道 122 | 123 | 124 | 下载全部分片,合并为音轨 125 | 126 | 127 | 设置m3u8文件的Baseurl 128 | 129 | 130 | 使用二进制合并 131 | 132 | 133 | 采用二进制直接追加合并文件 134 | 135 | 136 | 选择 137 | 138 | 139 | 选择存储目录 140 | 141 | 142 | 复制(_C) 143 | 144 | 145 | 剪切(_T) 146 | 147 | 148 | 合并后删除分片 149 | 150 | 151 | 勾选此项后合并完毕将删除所有分片 152 | 153 | 154 | 关闭完整性检查 155 | 156 | 157 | 下载完毕后跳过检查分片数量是否与m3u8内描述的文件数量一致 158 | 159 | 160 | 合并时不写入日期 161 | 162 | 163 | 使用ffmpeg混流时不写入Date属性 164 | 165 | 166 | 下载完成后不合并 167 | 168 | 169 | 不合并视频分片 170 | 171 | 172 | 不使用系统代理 173 | 174 | 175 | 不主动使用系统代理 176 | 177 | 178 | 执行程序 179 | 180 | 181 | 下载器主程序的文件名 182 | 183 | 184 | 混流MP4边下边看 185 | 186 | 187 | 使用ffmpeg混流时将元数据移动到头部 188 | 189 | 190 | 获取下载器(_N) 191 | 192 | 193 | 点击我即可调用下载器 194 | 195 | 196 | 请求头 197 | 198 | 199 | 为请求添加 HTTP Header 200 | 201 | 202 | 自定义IV 203 | 204 | 205 | 输入HEX字符串 206 | 207 | 208 | 自定义KEY 209 | 210 | 211 | 可拖入16字节的本地KEY文件或输入Base64字符串 212 | 213 | 214 | M3U8地址 215 | 216 | 217 | 可以输入或拖入文件; 拖入文件夹或txt以批量下载; 双击从剪贴板获取 218 | 219 | 220 | 限速(kb/s) 221 | 222 | 223 | 设置下载限速;0为不限制 224 | 225 | 226 | 最大线程 227 | 228 | 229 | 程序将尝试使用不高于此数值的线程下载 230 | 231 | 232 | 最小线程 233 | 234 | 235 | 程序将尝试使用不低于此数值的线程下载 236 | 237 | 238 | 混流文件 239 | 240 | 241 | 可拖入特定的json文件 242 | 243 | 244 | 启动参数 245 | 246 | 247 | 本程序生成的启动参数 248 | 249 | 250 | 仅解析m3u8 251 | 252 | 253 | 在解析m3u8之后退出程序,仅生成meta.json 254 | 255 | 256 | 粘贴(_P) 257 | 258 | 259 | 范围选择 260 | 261 | 262 | 设置开始时间或开始分片序号 263 | 264 | 265 | 设置终止时间或终止分片序号 266 | 267 | 268 | 重试次数 269 | 270 | 271 | 遇到停止速度时,程序尝试重新下载的次数 272 | 273 | 274 | 停速(kb/s) 275 | 276 | 277 | 当下载速度连续几次低于此数值时,重新下载 278 | 279 | 280 | 选择一个目录,视频将会下载到此处 281 | 282 | 283 | 找不到程序 284 | 285 | 286 | URL为必填项 287 | 288 | 289 | 请稍候 290 | 291 | 292 | 非预期的byte格式 293 | 294 | 295 | 非16 Bytes文件 296 | 297 | 298 | 超时时长(s) 299 | 300 | 301 | 设置请求超时时长 302 | 303 | 304 | 视频标题 305 | 306 | 307 | 双击此处可以自动获取视频标题 308 | 309 | 310 | 置顶窗口 311 | 312 | 313 | 置顶当前窗口 314 | 315 | 316 | 工作目录 317 | 318 | 319 | 存储目录,文件将会被下载到这里 320 | 321 | 322 | 设置代理 323 | 324 | 325 | 输入http/socks5代理地址,如http://127.0.0.1:8080. 326 | 327 | 328 | 不支持该代理链接! 329 | 330 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Resources.zh-TW.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 最小線程 122 | 123 | 124 | 最大線程 125 | 126 | 127 | 自設KEY 128 | 129 | 130 | 自設IV 131 | 132 | 133 | 重試次數 134 | 135 | 136 | 置頂當前窗口 137 | 138 | 139 | 置頂窗口 140 | 141 | 142 | 執行程式 143 | 144 | 145 | 粘貼(_P) 146 | 147 | 148 | 在解析m3u8之後退出程式,僅生成meta.json 149 | 150 | 151 | 遇到停止速度時,程式嘗試重新下載的次數 152 | 153 | 154 | 選擇存儲目錄 155 | 156 | 157 | 選擇 158 | 159 | 160 | 限速(kb/s) 161 | 162 | 163 | 下載完成後不合並 164 | 165 | 166 | 下載完畢後跳過檢查分片數量是否與m3u8內描述的文件數量壹致 167 | 168 | 169 | 下載全部分片,合並為音軌 170 | 171 | 172 | 下載器主程式的文件名 173 | 174 | 175 | 為請求添加 HTTP Header 176 | 177 | 178 | 停速(kb/s) 179 | 180 | 181 | 雙擊此處可以自動獲取視頻標題 182 | 183 | 184 | 輸入HEX字符串 185 | 186 | 187 | 檔案標題 188 | 189 | 190 | 使用二進制合並 191 | 192 | 193 | 使用ffmpeg混流時將元數據移動到頭部 194 | 195 | 196 | 使用ffmpeg混流時不寫入Date屬性 197 | 198 | 199 | 設置終止時間或終止分片序號 200 | 201 | 202 | 設置下載限速;0為不限制 203 | 204 | 205 | 設置請求超時時長 206 | 207 | 208 | 設置開始時間或開始分片序號 209 | 210 | 211 | 設置m3u8文件的Baseurl 212 | 213 | 214 | 請求頭 215 | 216 | 217 | 啟動參數 218 | 219 | 220 | 可以輸入或拖入文件; 拖入文件夾或txt以批量下載; 雙擊從剪貼板獲取 221 | 222 | 223 | 可拖入特定的json文件 224 | 225 | 226 | 可拖入16字節的本地KEY文件或輸入Base64字符串 227 | 228 | 229 | 僅解析m3u8 230 | 231 | 232 | 僅合並音頻軌道 233 | 234 | 235 | 剪切(_T) 236 | 237 | 238 | 獲取下載器(_N) 239 | 240 | 241 | 混流文件 242 | 243 | 244 | 混流MP4邊下邊看 245 | 246 | 247 | 合並時不寫入日期 248 | 249 | 250 | 合並後刪除分片 251 | 252 | 253 | 關閉完整性檢查 254 | 255 | 256 | 勾選此項後合並完畢將刪除所有分片 257 | 258 | 259 | 工作目錄 260 | 261 | 262 | 復制(_C) 263 | 264 | 265 | 範圍選擇 266 | 267 | 268 | 點擊我即可調用下載器 269 | 270 | 271 | 當下載速度連續幾次低於此數值時,重新下載 272 | 273 | 274 | 存儲目錄,檔案將會被下載到這裏 275 | 276 | 277 | 程序將嘗試使用不高於此數值的線程下載 278 | 279 | 280 | 程序將嘗試使用不低於此數值的線程下載 281 | 282 | 283 | 超時時長(s) 284 | 285 | 286 | 采用二進制直接追加合並文件 287 | 288 | 289 | 不主動使用系統代理 290 | 291 | 292 | 不使用系統代理 293 | 294 | 295 | 不合並視頻分片 296 | 297 | 298 | 本程序生成的啟動參數 299 | 300 | 301 | M3U8地址 302 | 303 | 304 | 選擇壹個目錄,視頻將會下載到此處 305 | 306 | 307 | 找不到程式 308 | 309 | 310 | URL為必填項 311 | 312 | 313 | 請稍候 314 | 315 | 316 | 非預期的byte格式 317 | 318 | 319 | 非16 Bytes文件 320 | 321 | 322 | 輸入http/socks5代理地址,如http://127.0.0.1:8080 323 | 324 | 325 | 設置代理 326 | 327 | 328 | 不支持該代理鏈接! 329 | 330 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/Properties/Resources.en-US.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | Audio Only 122 | 123 | 124 | Download all segements but only mux for audio track 125 | 126 | 127 | Set the Baseurl of the m3u8 file 128 | 129 | 130 | BinaryMerge 131 | 132 | 133 | Use binary to directly append and merge files 134 | 135 | 136 | Select 137 | 138 | 139 | Select storage directory 140 | 141 | 142 | Copy(_C) 143 | 144 | 145 | Cut(_T) 146 | 147 | 148 | DeleteAfterDone 149 | 150 | 151 | After checking this option, all segments will be deleted after the merge is completed 152 | 153 | 154 | NoIntegrityCheck 155 | 156 | 157 | After the download is complete, skip checking whether the number of segments is consistent with the number of files described in m3u8 158 | 159 | 160 | NoDateInfo 161 | 162 | 163 | Do not write the Date info when using ffmpeg muxing 164 | 165 | 166 | NoMerge 167 | 168 | 169 | Do not merge segments 170 | 171 | 172 | NoProxy 173 | 174 | 175 | Do not actively use system's proxy 176 | 177 | 178 | ToExecute 179 | 180 | 181 | Path or file name of the main program 182 | 183 | 184 | MuxFastStart 185 | 186 | 187 | Move metadata to the head when using ffmpeg muxing 188 | 189 | 190 | Get the downloader 191 | 192 | 193 | Click me to call the downloader 194 | 195 | 196 | Headers 197 | 198 | 199 | Add HTTP headers to the request 200 | 201 | 202 | SetIV 203 | 204 | 205 | Enter the HEX string 206 | 207 | 208 | SetKEY 209 | 210 | 211 | You can drag in a 16-byte local KEY file or input a Base64 string 212 | 213 | 214 | M3U8 215 | 216 | 217 | You can input or drag in file; drag into folders or txt to batch download; double click to get from the clipboard 218 | 219 | 220 | SpeedLimit 221 | 222 | 223 | Set download speed limit(kb/s); 0 means no limit 224 | 225 | 226 | MaxThread 227 | 228 | 229 | The program will try to download using threads not higher than this value 230 | 231 | 232 | MinThread 233 | 234 | 235 | The program will try to download using threads not lower than this value 236 | 237 | 238 | MuxJson 239 | 240 | 241 | You can drag in a specific json file 242 | 243 | 244 | Params 245 | 246 | 247 | Startup parameters generated by this program 248 | 249 | 250 | ParseOnly 251 | 252 | 253 | Exit the program after parsing m3u8 and only generate meta.json 254 | 255 | 256 | Paste(_P) 257 | 258 | 259 | SetRange 260 | 261 | 262 | Set the start time or start segment sequence number 263 | 264 | 265 | Set the end time or end fragment segment number 266 | 267 | 268 | RetryCount 269 | 270 | 271 | The number of times the program tries to download again when it encounters a stop speed 272 | 273 | 274 | StopSpeed 275 | 276 | 277 | When the download speed is lower than this value(kb/s) for several consecutive times, download again 278 | 279 | 280 | Timeout(s) 281 | 282 | 283 | Set the request timeout 284 | 285 | 286 | FileName 287 | 288 | 289 | Double click here to get the video title automatically 290 | 291 | 292 | Set Top 293 | 294 | 295 | Set Top most for current window 296 | 297 | 298 | WorkDir 299 | 300 | 301 | Storage directory, files will be downloaded here 302 | 303 | 304 | Choose a directory and the video will be downloaded here 305 | 306 | 307 | File not found 308 | 309 | 310 | URL is required 311 | 312 | 313 | Wait 314 | 315 | 316 | Unexpected byte format 317 | 318 | 319 | Not 16 Bytes file 320 | 321 | 322 | Set HTTP/SOCKS5 Proxy, like http://127.0.0.1:8080 323 | 324 | 325 | SetProxy 326 | 327 | 328 | Proxy is invaild! 329 | 330 | -------------------------------------------------------------------------------- /N_m3u8DL-CLI-SimpleG/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 |