mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 19:32:04 +01:00
- support for LG LB58 binary TLL format - support for LG GlobalClone XML format with UTF8-enveloped binary DVB channel names (look like chinese), plain text channel names and hex-encoded DVB channel names
16 lines
377 B
C#
16 lines
377 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
public class GcSerializerPlugin : ISerializerPlugin
|
|
{
|
|
public string PluginName { get { return "LG GlobalClone"; } }
|
|
public string FileFilter { get { return "*Clone*.tll"; } }
|
|
|
|
public SerializerBase CreateSerializer(string inputFile)
|
|
{
|
|
return new GcSerializer(inputFile);
|
|
}
|
|
}
|
|
}
|