jellyfin/MediaBrowser.Api/HttpHandlers/AudioHandler.cs

133 lines
3.9 KiB
C#
Raw Normal View History

2012-08-10 13:18:30 +00:00
using System;
2012-08-10 15:17:52 +00:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
2012-08-10 13:18:30 +00:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Api.HttpHandlers
{
public class AudioHandler : BaseMediaHandler<Audio>
2012-08-10 13:18:30 +00:00
{
/// <summary>
/// Supported values: mp3,flac,ogg,wav,asf
/// </summary>
public IEnumerable<string> AudioFormats
2012-08-10 15:17:52 +00:00
{
get
{
2012-08-11 03:19:11 +00:00
string val = QueryString["audioformats"];
2012-08-10 15:17:52 +00:00
if (string.IsNullOrEmpty(val))
{
return new string[] { "mp3" };
2012-08-10 15:17:52 +00:00
}
return val.Split(',');
2012-08-10 15:17:52 +00:00
}
}
public IEnumerable<int> AudioBitRates
2012-08-10 15:17:52 +00:00
{
get
{
string val = QueryString["audiobitrates"];
2012-08-10 15:17:52 +00:00
if (string.IsNullOrEmpty(val))
2012-08-10 13:18:30 +00:00
{
return new int[] { };
2012-08-10 13:18:30 +00:00
}
return val.Split(',').Select(v => int.Parse(v));
2012-08-10 13:18:30 +00:00
}
}
2012-08-10 15:17:52 +00:00
private int? GetMaxAcceptedBitRate(string audioFormat)
2012-08-10 15:17:52 +00:00
{
2012-08-11 18:12:34 +00:00
if (!AudioBitRates.Any())
{
return null;
}
int index = AudioFormats.ToList().IndexOf(audioFormat);
2012-08-11 18:12:34 +00:00
return AudioBitRates.ElementAt(index);
2012-08-10 15:17:52 +00:00
}
/// <summary>
/// Determines whether or not the original file requires transcoding
/// </summary>
protected override bool RequiresConversion()
2012-08-10 15:17:52 +00:00
{
string currentFormat = Path.GetExtension(LibraryItem.Path).Replace(".", string.Empty);
// If it's not in a format the consumer accepts, return true
if (!AudioFormats.Any(f => currentFormat.EndsWith(f, StringComparison.OrdinalIgnoreCase)))
2012-08-10 15:17:52 +00:00
{
return true;
}
int? bitrate = GetMaxAcceptedBitRate(currentFormat);
2012-08-10 15:17:52 +00:00
// If the bitrate is greater than our desired bitrate, we need to transcode
if (bitrate.HasValue && bitrate.Value < LibraryItem.BitRate)
2012-08-10 15:17:52 +00:00
{
return true;
2012-08-10 15:17:52 +00:00
}
// If the number of channels is greater than our desired channels, we need to transcode
if (AudioChannels.HasValue && AudioChannels.Value < LibraryItem.Channels)
2012-08-10 15:17:52 +00:00
{
return true;
2012-08-10 15:17:52 +00:00
}
// If the sample rate is greater than our desired sample rate, we need to transcode
if (AudioSampleRate.HasValue && AudioSampleRate.Value < LibraryItem.SampleRate)
2012-08-10 15:17:52 +00:00
{
return true;
2012-08-10 15:17:52 +00:00
}
2012-08-10 15:17:52 +00:00
// Yay
return false;
}
/// <summary>
/// Gets the format we'll be converting to
/// </summary>
protected override string GetOutputFormat()
2012-08-10 15:17:52 +00:00
{
return AudioFormats.First();
2012-08-10 15:17:52 +00:00
}
/// <summary>
/// Creates arguments to pass to ffmpeg
/// </summary>
protected override string GetCommandLineArguments()
2012-08-10 15:17:52 +00:00
{
List<string> audioTranscodeParams = new List<string>();
string outputFormat = GetOutputFormat();
int? bitrate = GetMaxAcceptedBitRate(outputFormat);
if (bitrate.HasValue)
2012-08-10 15:17:52 +00:00
{
audioTranscodeParams.Add("-ab " + bitrate.Value);
2012-08-10 15:17:52 +00:00
}
if (AudioChannels.HasValue)
2012-08-10 15:17:52 +00:00
{
audioTranscodeParams.Add("-ac " + AudioChannels.Value);
2012-08-10 15:17:52 +00:00
}
if (AudioSampleRate.HasValue)
{
audioTranscodeParams.Add("-ar " + AudioSampleRate.Value);
}
audioTranscodeParams.Add("-f " + outputFormat);
return "-i \"" + LibraryItem.Path + "\" -vn " + string.Join(" ", audioTranscodeParams.ToArray()) + " -";
}
2012-08-10 13:18:30 +00:00
}
}