Skip to content

Commit

Permalink
Use FlyleafLib instead of mediaplayer, bunch of improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
0x90d committed Aug 6, 2023
1 parent c513c6d commit b6d1a81
Show file tree
Hide file tree
Showing 16 changed files with 543 additions and 584 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*.cs]

# CA1416: Validate platform compatibility
dotnet_diagnostic.CA1416.severity = silent
11 changes: 8 additions & 3 deletions YetAnotherLosslessCutter.sln
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29613.14
# Visual Studio Version 17
VisualStudioVersion = 17.7.33906.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YetAnotherLosslessCutter", "YetAnotherLosslessCutter\YetAnotherLosslessCutter.csproj", "{F2952605-8C12-41FB-9DC5-912044470BC6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherLosslessCutter", "YetAnotherLosslessCutter\YetAnotherLosslessCutter.csproj", "{F2952605-8C12-41FB-9DC5-912044470BC6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5C7BDB1A-5C7B-4BB8-8340-0B01F6B9E9DB}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions YetAnotherLosslessCutter/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("YALC")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -21,7 +21,7 @@

static class YALCConstants
{
public const string ASSEMBLY_VERSION = "1.0.3.0";
public const string ASSEMBLY_INFORMATIONAL_VERSION = "v1.0.3";
public const string ASSEMBLY_VERSION = "1.0.5.0";
public const string ASSEMBLY_INFORMATIONAL_VERSION = "v1.0.5";
public const string ASSEMBLY_FILE_VERSION = ASSEMBLY_VERSION;
}
4 changes: 3 additions & 1 deletion YetAnotherLosslessCutter/CuttingTaskResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ sealed class CuttingTaskResult
{
public readonly bool Success;
public readonly Exception Error;
public FfmpegUtil Ffmpeg;

public CuttingTaskResult(bool success, Exception error)
public CuttingTaskResult(bool success, Exception error, FfmpegUtil ffmpeg)
{
Success = success;
Error = error;
Ffmpeg = ffmpeg;
}
}
}
185 changes: 0 additions & 185 deletions YetAnotherLosslessCutter/FFProbe/FFProbeJsonReader.cs

This file was deleted.

56 changes: 0 additions & 56 deletions YetAnotherLosslessCutter/FFProbe/MediaInfo.cs

This file was deleted.

Loading

0 comments on commit b6d1a81

Please sign in to comment.