mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
10 lines
209 B
C#
10 lines
209 B
C#
namespace AudioCore.Impl;
|
|
|
|
public sealed class FfmpegAudioReaderFactory : IAudioReaderFactory
|
|
{
|
|
public IAudioReader Create(string filePath)
|
|
{
|
|
return new FfmpegAudioReader(filePath);
|
|
}
|
|
}
|