You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
6 years ago
|
using System.Collections.Generic;
|
||
|
using NLog;
|
||
|
using NLog.Fluent;
|
||
|
using NzbDrone.Common.Instrumentation;
|
||
|
using NzbDrone.Common.Instrumentation.Extensions;
|
||
|
using NzbDrone.Core.Parser;
|
||
|
using NzbDrone.Core.Parser.Model;
|
||
|
|
||
|
namespace NzbDrone.Core.MediaFiles
|
||
|
{
|
||
|
public static class MediaInfoFormatter
|
||
|
{
|
||
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(MediaInfoFormatter));
|
||
|
|
||
|
public static string FormatAudioBitrate(MediaInfoModel mediaInfo)
|
||
|
{
|
||
|
return mediaInfo.AudioBitrate + " kbps";
|
||
|
}
|
||
|
|
||
|
public static string FormatAudioBitsPerSample(MediaInfoModel mediaInfo)
|
||
|
{
|
||
|
return mediaInfo.AudioBits + "bit";
|
||
|
}
|
||
|
|
||
|
public static string FormatAudioSampleRate(MediaInfoModel mediaInfo)
|
||
|
{
|
||
|
return $"{mediaInfo.AudioSampleRate / 1000:0.#}kHz";
|
||
|
}
|
||
|
|
||
|
public static decimal FormatAudioChannels(MediaInfoModel mediaInfo)
|
||
|
{
|
||
|
return mediaInfo.AudioChannels;
|
||
|
}
|
||
|
|
||
|
public static readonly Dictionary<Codec, string> CodecNames = new Dictionary<Codec, string> {
|
||
|
{Codec.AAC, "AAC"},
|
||
|
{Codec.AACVBR, "AAC"},
|
||
|
{Codec.ALAC, "ALAC"},
|
||
|
{Codec.APE, "APE"},
|
||
|
{Codec.FLAC, "FLAC"},
|
||
|
{Codec.MP3CBR, "MP3"},
|
||
|
{Codec.MP3VBR, "MP3"},
|
||
|
{Codec.OGG, "OGG"},
|
||
|
{Codec.WAV, "PCM"},
|
||
|
{Codec.WAVPACK, "WavPack"},
|
||
|
{Codec.WMA, "WMA"}
|
||
|
};
|
||
|
|
||
|
public static string FormatAudioCodec(MediaInfoModel mediaInfo)
|
||
|
{
|
||
|
var codec = QualityParser.ParseCodec(mediaInfo.AudioFormat, null);
|
||
|
|
||
|
if (CodecNames.ContainsKey(codec))
|
||
|
{
|
||
|
return CodecNames[codec];
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Logger.Debug()
|
||
|
.Message("Unknown audio format: '{0}'.", string.Join(", ", mediaInfo.AudioFormat))
|
||
|
.WriteSentryWarn("UnknownAudioFormat", mediaInfo.AudioFormat)
|
||
|
.Write();
|
||
|
|
||
|
return "Unknown";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|