mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-06 05:06:30 +02:00
- added support for .DBM file (for now only the TechniSat DVB-C version)
This commit is contained in:
22
source/ChanSort.Loader.DBM/DbmPlugin.cs
Normal file
22
source/ChanSort.Loader.DBM/DbmPlugin.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using ChanSort.Api;
|
||||
|
||||
namespace ChanSort.Loader.DBM
|
||||
{
|
||||
public class DbmPlugin : ISerializerPlugin
|
||||
{
|
||||
/*
|
||||
* Various brands use variations of an underlying .DBM binary file format for DVB-C and DVB-S tuners.
|
||||
*
|
||||
* Known models include Xoro, TechniSat, ...
|
||||
*/
|
||||
|
||||
public string DllName { get; set; }
|
||||
public string PluginName => "DBM (Xoro, TechniSat, ...)";
|
||||
public string FileFilter => "*.dbm";
|
||||
|
||||
public SerializerBase CreateSerializer(string inputFile)
|
||||
{
|
||||
return new DbmSerializer(inputFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user