1
0
mirror of synced 2024-11-12 02:00:50 +01:00
Switch-Toolbox/File_Format_Library/FileFormats/Audio/Ogg.cs
2020-02-02 19:26:45 -05:00

85 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Threading.Tasks;
using Toolbox;
using System.Windows.Forms;
using Toolbox.Library;
using Toolbox.Library.Forms;
using VGAudio.Formats;
using VGAudio.Containers.NintendoWare;
using CSCore;
using CSCore.Codecs;
namespace FirstPlugin
{
public class OGG : IEditor<AudioPlayerPanel>, IFileFormat
{
public FileType FileType { get; set; } = FileType.Audio;
public bool CanSave { get; set; }
public string[] Description { get; set; } = new string[] { "Ogg-vorbis" };
public string[] Extension { get; set; } = new string[] { "*.ogg" };
public string FileName { get; set; }
public string FilePath { get; set; }
public IFileInfo IFileInfo { get; set; }
public bool Identify(System.IO.Stream stream)
{
using (var reader = new Toolbox.Library.IO.FileReader(stream, true))
{
bool IsValidSig = reader.CheckSignature(4, "OggS");
bool IsValidExt = Utils.HasExtension(FileName, ".ogg");
if (IsValidExt || IsValidSig)
return true;
else
return false;
}
}
public Type[] Types
{
get
{
List<Type> types = new List<Type>();
return types.ToArray();
}
}
public AudioPlayerPanel OpenForm()
{
AudioPlayerPanel form = new AudioPlayerPanel();
form.Text = FileName;
form.Dock = DockStyle.Fill;
return form;
}
public void FillEditor(UserControl control)
{
((AudioPlayerPanel)control).LoadFile(waveSource, this);
}
IWaveSource waveSource;
public void Load(System.IO.Stream stream)
{
stream.Position = 0;
CanSave = true;
waveSource = CodecFactory.Instance.GetCodec(stream, ".ogg");
}
public void Unload()
{
}
public void Save(System.IO.Stream stream)
{
}
}
}