aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/DTO/AudioOutputFormats.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/DTO/AudioOutputFormats.cs')
-rw-r--r--MediaBrowser.Model/DTO/AudioOutputFormats.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/DTO/AudioOutputFormats.cs b/MediaBrowser.Model/DTO/AudioOutputFormats.cs
new file mode 100644
index 000000000..1ae044473
--- /dev/null
+++ b/MediaBrowser.Model/DTO/AudioOutputFormats.cs
@@ -0,0 +1,15 @@
+
+namespace MediaBrowser.Model.DTO
+{
+ /// <summary>
+ /// These are the audio output formats that the api is cabaple of streaming
+ /// This does not limit the inputs, only the outputs.
+ /// </summary>
+ public enum AudioOutputFormats
+ {
+ Aac,
+ Flac,
+ Mp3,
+ Wma
+ }
+}