| Name | Message | Date |
|---|---|---|
| 📄 ClipExtractor.cs | 8 days ago | |
| 📄 Ffmpeg.csproj | 9 days ago | |
| 📄 packages.lock.json | 8 days ago | |
| 📄 ServiceCollectionExtensions.cs | 8 days ago | |
| 📄 SubtitleReader.cs | 9 days ago |
📄
src/Infrastructure/Ffmpeg/ServiceCollectionExtensions.cs
using Microsoft.Extensions.DependencyInjection; using Slopper.Domain; namespace Slopper.Infrastructure.Ffmpeg; public static class ServiceCollectionExtensions { public static IServiceCollection AddFfmpegServices(this IServiceCollection services) => services.AddTransient<IClipExtractor, ClipExtractor>().AddTransient<ISubtitleReader, SubtitleReader>(); }