mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
Add - Added **Include Crunchyroll Artists (Music)** in history to settings for expanded tracking Add - Added **filters to history tab** to hide series or artists for a cleaner view Add - Added a **toggle to include featured music** in series search results Chg - Made small changes to **sync timing** to more accurately detect delays Chg - Migrated settings to json file Fix - Fixed a **sync timing issue** with longer comparison videos to ensure proper synchronization Fix - Fixed issues with artist urls
190 lines
No EOL
7.2 KiB
C#
190 lines
No EOL
7.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
using CRD.Utils.Files;
|
|
using CRD.Utils.Structs;
|
|
using SixLabors.ImageSharp;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing;
|
|
using Image = SixLabors.ImageSharp.Image;
|
|
|
|
namespace CRD.Utils.Muxing;
|
|
|
|
public class SyncingHelper{
|
|
public static async Task<(bool IsOk, int ErrorCode, double frameRate)> ExtractFrames(string videoPath, string outputDir, double offset, double duration){
|
|
var ffmpegPath = CfgManager.PathFFMPEG;
|
|
var arguments = $"-i \"{videoPath}\" -vf \"select='gt(scene,0.1)',showinfo\" -fps_mode vfr -frame_pts true -t {duration} -ss {offset} \"{outputDir}\\frame%05d.png\"";
|
|
|
|
var output = "";
|
|
|
|
try{
|
|
using (var process = new Process()){
|
|
process.StartInfo.FileName = ffmpegPath;
|
|
process.StartInfo.Arguments = arguments;
|
|
process.StartInfo.RedirectStandardOutput = true;
|
|
process.StartInfo.RedirectStandardError = true;
|
|
process.StartInfo.UseShellExecute = false;
|
|
process.StartInfo.CreateNoWindow = true;
|
|
|
|
process.OutputDataReceived += (sender, e) => {
|
|
if (!string.IsNullOrEmpty(e.Data)){
|
|
Console.WriteLine(e.Data);
|
|
}
|
|
};
|
|
|
|
process.ErrorDataReceived += (sender, e) => {
|
|
if (!string.IsNullOrEmpty(e.Data)){
|
|
// Console.WriteLine($"{e.Data}");
|
|
output += e.Data;
|
|
}
|
|
};
|
|
|
|
process.Start();
|
|
|
|
process.BeginOutputReadLine();
|
|
process.BeginErrorReadLine();
|
|
|
|
await process.WaitForExitAsync();
|
|
bool isSuccess = process.ExitCode == 0;
|
|
double frameRate = ExtractFrameRate(output);
|
|
return (IsOk: isSuccess, ErrorCode: process.ExitCode, frameRate);
|
|
}
|
|
} catch (Exception ex){
|
|
Console.Error.WriteLine($"An error occurred: {ex.Message}");
|
|
return (IsOk: false, ErrorCode: -1, 0);
|
|
}
|
|
}
|
|
|
|
public static double ExtractFrameRate(string ffmpegOutput){
|
|
var match = Regex.Match(ffmpegOutput, @"Stream #0:0.*?(\d+(?:\.\d+)?) fps");
|
|
if (match.Success){
|
|
return double.Parse(match.Groups[1].Value, CultureInfo.InvariantCulture);
|
|
}
|
|
|
|
Console.Error.WriteLine("Failed to extract frame rate from FFmpeg output.");
|
|
return 0;
|
|
}
|
|
|
|
private static double CalculateSSIM(float[] pixels1, float[] pixels2){
|
|
double mean1 = pixels1.Average();
|
|
double mean2 = pixels2.Average();
|
|
|
|
double var1 = 0, var2 = 0, covariance = 0;
|
|
int count = pixels1.Length;
|
|
|
|
for (int i = 0; i < count; i++){
|
|
var1 += (pixels1[i] - mean1) * (pixels1[i] - mean1);
|
|
var2 += (pixels2[i] - mean2) * (pixels2[i] - mean2);
|
|
covariance += (pixels1[i] - mean1) * (pixels2[i] - mean2);
|
|
}
|
|
|
|
var1 /= count - 1;
|
|
var2 /= count - 1;
|
|
covariance /= count - 1;
|
|
|
|
double c1 = 0.01 * 0.01 * 255 * 255;
|
|
double c2 = 0.03 * 0.03 * 255 * 255;
|
|
|
|
double ssim = ((2 * mean1 * mean2 + c1) * (2 * covariance + c2)) /
|
|
((mean1 * mean1 + mean2 * mean2 + c1) * (var1 + var2 + c2));
|
|
|
|
return ssim;
|
|
}
|
|
|
|
private static float[] ExtractPixels(Image<Rgba32> image, int width, int height){
|
|
float[] pixels = new float[width * height];
|
|
int index = 0;
|
|
|
|
image.ProcessPixelRows(accessor => {
|
|
for (int y = 0; y < accessor.Height; y++){
|
|
Span<Rgba32> row = accessor.GetRowSpan(y);
|
|
for (int x = 0; x < row.Length; x++){
|
|
pixels[index++] = row[x].R;
|
|
}
|
|
}
|
|
});
|
|
|
|
return pixels;
|
|
}
|
|
|
|
public static (double ssim, double pixelDiff) ComputeSSIM(string imagePath1, string imagePath2, int targetWidth, int targetHeight){
|
|
using (var image1 = Image.Load<Rgba32>(imagePath1))
|
|
using (var image2 = Image.Load<Rgba32>(imagePath2)){
|
|
// Preprocess images (resize and convert to grayscale)
|
|
image1.Mutate(x => x.Resize(new ResizeOptions{
|
|
Size = new Size(targetWidth, targetHeight),
|
|
Mode = ResizeMode.Max
|
|
}).Grayscale());
|
|
|
|
image2.Mutate(x => x.Resize(new ResizeOptions{
|
|
Size = new Size(targetWidth, targetHeight),
|
|
Mode = ResizeMode.Max
|
|
}).Grayscale());
|
|
|
|
// Extract pixel values into arrays
|
|
float[] pixels1 = ExtractPixels(image1, targetWidth, targetHeight);
|
|
float[] pixels2 = ExtractPixels(image2, targetWidth, targetHeight);
|
|
|
|
// Check if any frame is completely black, if so, skip SSIM calculation
|
|
if (IsBlackFrame(pixels1) || IsBlackFrame(pixels2)){
|
|
// Return a negative value or zero to indicate no SSIM comparison for black frames.
|
|
return (-1.0,99);
|
|
}
|
|
|
|
// Compute SSIM
|
|
return (CalculateSSIM(pixels1, pixels2),CalculatePixelDifference(pixels1,pixels2));
|
|
}
|
|
}
|
|
|
|
private static double CalculatePixelDifference(float[] pixels1, float[] pixels2){
|
|
double totalDifference = 0;
|
|
int count = pixels1.Length;
|
|
|
|
for (int i = 0; i < count; i++){
|
|
totalDifference += Math.Abs(pixels1[i] - pixels2[i]);
|
|
}
|
|
|
|
return totalDifference / count; // Average difference
|
|
}
|
|
|
|
private static bool IsBlackFrame(float[] pixels, float threshold = 1.0f){
|
|
// Check if all pixel values are below the threshold, indicating a black frame.
|
|
return pixels.All(p => p <= threshold);
|
|
}
|
|
|
|
public static bool AreFramesSimilar(string imagePath1, string imagePath2, double ssimThreshold){
|
|
var (ssim, pixelDiff) = ComputeSSIM(imagePath1, imagePath2, 256, 256);
|
|
// Console.WriteLine($"SSIM: {ssim}");
|
|
// Console.WriteLine(pixelDiff);
|
|
|
|
return ssim > ssimThreshold && pixelDiff < 10;
|
|
}
|
|
|
|
|
|
public static double CalculateOffset(List<FrameData> baseFrames, List<FrameData> compareFrames,bool reverseCompare = false, double ssimThreshold = 0.9){
|
|
|
|
if (reverseCompare){
|
|
baseFrames.Reverse();
|
|
compareFrames.Reverse();
|
|
}
|
|
|
|
foreach (var baseFrame in baseFrames){
|
|
var matchingFrame = compareFrames.FirstOrDefault(f => AreFramesSimilar(baseFrame.FilePath, f.FilePath, ssimThreshold));
|
|
if (matchingFrame != null){
|
|
Console.WriteLine($"Matched Frame:");
|
|
Console.WriteLine($"\t Base Frame Path: {baseFrame.FilePath} Time: {baseFrame.Time},");
|
|
Console.WriteLine($"\t Compare Frame Path: {matchingFrame.FilePath} Time: {matchingFrame.Time}");
|
|
return baseFrame.Time - matchingFrame.Time;
|
|
} else{
|
|
// Console.WriteLine($"No Match Found for Base Frame Time: {baseFrame.Time}");
|
|
Debug.WriteLine($"No Match Found for Base Frame Time: {baseFrame.Time}");
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
} |