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.
86 lines
2.9 KiB
86 lines
2.9 KiB
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller.Library;
|
|
using ServiceStack.ServiceHost;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Api.Playback.Progressive
|
|
{
|
|
/// <summary>
|
|
/// Class GetAudioStream
|
|
/// </summary>
|
|
[Route("/Audio/{Id}/stream.mp3", "GET")]
|
|
[Route("/Audio/{Id}/stream.wma", "GET")]
|
|
[Route("/Audio/{Id}/stream.aac", "GET")]
|
|
[Route("/Audio/{Id}/stream.flac", "GET")]
|
|
[Route("/Audio/{Id}/stream.ogg", "GET")]
|
|
[Route("/Audio/{Id}/stream", "GET")]
|
|
[ServiceStack.ServiceHost.Api(Description = "Gets an audio stream")]
|
|
public class GetAudioStream : StreamRequest
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Class AudioService
|
|
/// </summary>
|
|
public class AudioService : BaseProgressiveStreamingService
|
|
{
|
|
public AudioService(IServerApplicationPaths appPaths, IUserManager userManager, ILibraryManager libraryManager, IIsoManager isoManager)
|
|
: base(appPaths, userManager, libraryManager, isoManager)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the specified request.
|
|
/// </summary>
|
|
/// <param name="request">The request.</param>
|
|
/// <returns>System.Object.</returns>
|
|
public object Get(GetAudioStream request)
|
|
{
|
|
return ProcessRequest(request);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the command line arguments.
|
|
/// </summary>
|
|
/// <param name="outputPath">The output path.</param>
|
|
/// <param name="state">The state.</param>
|
|
/// <returns>System.String.</returns>
|
|
/// <exception cref="System.InvalidOperationException">Only aac and mp3 audio codecs are supported.</exception>
|
|
protected override string GetCommandLineArguments(string outputPath, StreamState state)
|
|
{
|
|
var request = state.Request;
|
|
|
|
var audioTranscodeParams = new List<string>();
|
|
|
|
if (request.AudioBitRate.HasValue)
|
|
{
|
|
audioTranscodeParams.Add("-ab " + request.AudioBitRate.Value);
|
|
}
|
|
|
|
var channels = GetNumAudioChannelsParam(request, state.AudioStream);
|
|
|
|
if (channels.HasValue)
|
|
{
|
|
audioTranscodeParams.Add("-ac " + channels.Value);
|
|
}
|
|
|
|
if (request.AudioSampleRate.HasValue)
|
|
{
|
|
audioTranscodeParams.Add("-ar " + request.AudioSampleRate.Value);
|
|
}
|
|
|
|
const string vn = " -vn";
|
|
|
|
return string.Format("{0} -i {1}{2} -threads 0{5} {3} -id3v2_version 3 -write_id3v1 1 \"{4}\"",
|
|
GetFastSeekCommandLineParameter(request),
|
|
GetInputArgument(state.Item, state.IsoMount),
|
|
GetSlowSeekCommandLineParameter(request),
|
|
string.Join(" ", audioTranscodeParams.ToArray()),
|
|
outputPath,
|
|
vn).Trim();
|
|
}
|
|
}
|
|
}
|