-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAudiofile.cs
More file actions
173 lines (158 loc) · 5.94 KB
/
Audiofile.cs
File metadata and controls
173 lines (158 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//This file is part of AudioCuesheetEditor.
//AudioCuesheetEditor is free software: you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
//the Free Software Foundation, either version 3 of the License, or
//(at your option) any later version.
//AudioCuesheetEditor is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//You should have received a copy of the GNU General Public License
//along with Foobar. If not, see
//<http: //www.gnu.org/licenses />.
using System.Text.Json.Serialization;
namespace AudioCuesheetEditor.Model.IO.Audio
{
[method: JsonConstructor]
public class Audiofile(String name) : IDisposable, IAudiofile
{
public static readonly AudioCodec AudioCodecWEBM = new("audio/webm", ".webm", "AudioCodec WEBM");
public static readonly List<AudioCodec> AudioCodecs =
[
AudioCodecWEBM,
new AudioCodec("audio/mpeg", ".mp3", "AudioCodec MP3"),
new AudioCodec("audio/ogg", ".oga", "AudioCodec OGA"),
new AudioCodec("audio/ogg", ".ogg", "AudioCodec OGG"),
new AudioCodec("audio/ogg; codecs=opus", ".opus", "AudioCodec OPUS"),
new AudioCodec("audio/wav", ".wav", "AudioCodec WAV"),
new AudioCodec("audio/wav", ".wave", "AudioCodec WAVE"),
new AudioCodec("audio/flac", ".flac", "AudioCodec FLAC")
];
private AudioCodec? audioCodec;
private Stream? contentStream;
private String name = name;
private bool disposedValue;
public event EventHandler? ContentStreamLoaded;
public Audiofile(String name, String objectURL, AudioCodec? audioCodec) : this(name)
{
if (String.IsNullOrEmpty(objectURL))
{
throw new ArgumentNullException(nameof(objectURL));
}
ObjectURL = objectURL;
AudioCodec = audioCodec;
}
public String Name
{
get => name;
set
{
if (String.IsNullOrEmpty(value))
{
throw new ArgumentNullException(nameof(value));
}
var extension = Path.GetExtension(value);
if (extension.Equals(audioCodec?.FileExtension, StringComparison.CurrentCultureIgnoreCase) == false)
{
value = $"{value}{audioCodec?.FileExtension}";
}
name = value;
}
}
[JsonIgnore]
public String? ObjectURL { get; private set; }
/// <summary>
/// Boolean indicating if the stream has fully been loaded
/// </summary>
[JsonIgnore]
public Boolean IsContentStreamLoaded
{
get { return ContentStream != null; }
}
/// <summary>
/// File content stream. Be carefully, this stream is loaded asynchronously. Connect to the StreamLoaded for checking if loading has already been done!
/// </summary>
[JsonIgnore]
public Stream? ContentStream
{
get => contentStream;
set
{
contentStream = value;
if ((ContentStream != null) && (AudioCodec != null))
{
var track = new ATL.Track(ContentStream, AudioCodec.MimeType);
Duration = new TimeSpan(0, 0, track.Duration);
ContentStreamLoaded?.Invoke(this, EventArgs.Empty);
}
}
}
/// <summary>
/// Duration of the audio file
/// </summary>
public TimeSpan? Duration { get; private set; }
public AudioCodec? AudioCodec
{
get { return audioCodec; }
private set
{
audioCodec = value;
if ((audioCodec != null) && (Name?.EndsWith(audioCodec.FileExtension) == false))
{
//Replace file ending
Name = String.Format("{0}{1}", Path.GetFileNameWithoutExtension(Name), audioCodec.FileExtension);
}
}
}
[JsonIgnore]
public String? AudioFileType
{
get
{
String? audioFileType = null;
if (AudioCodec != null)
{
audioFileType = AudioCodec.FileExtension.Replace(".", "").ToUpper();
}
//Try to find by file name
audioFileType ??= Path.GetExtension(Name)?.Replace(".", "").ToUpper();
return audioFileType;
}
}
[JsonIgnore]
public Boolean PlaybackPossible
{
get
{
Boolean playbackPossible = false;
if ((String.IsNullOrEmpty(Name) == false) && (String.IsNullOrEmpty(ObjectURL) == false) && (String.IsNullOrEmpty(AudioFileType) == false) && (AudioCodec != null))
{
playbackPossible = true;
}
return playbackPossible;
}
}
protected virtual void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
if (ContentStream != null)
{
ContentStream.Close();
ContentStream.Dispose();
ContentStream = null;
}
}
disposedValue = true;
}
}
public void Dispose()
{
// Ändern Sie diesen Code nicht. Fügen Sie Bereinigungscode in der Methode "Dispose(bool disposing)" ein.
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
}
}