2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-12-15 19:39:21 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2015-01-20 05:19:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Devices;
|
2014-03-25 05:25:03 +00:00
|
|
|
|
using MediaBrowser.Controller.Dlna;
|
2013-09-18 18:49:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-20 16:37:41 +00:00
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
2013-08-10 01:16:31 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2015-05-04 17:44:25 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-02-27 04:19:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
2016-06-19 06:18:29 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
2016-11-10 14:41:24 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
using MediaBrowser.Model.Services;
|
2013-02-27 04:19:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.Playback.Progressive
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class GetAudioStream
|
|
|
|
|
/// </summary>
|
2014-06-18 05:16:00 +00:00
|
|
|
|
[Route("/Audio/{Id}/stream.{Container}", "GET", Summary = "Gets an audio stream")]
|
2014-03-28 19:58:18 +00:00
|
|
|
|
[Route("/Audio/{Id}/stream", "GET", Summary = "Gets an audio stream")]
|
2014-06-18 05:16:00 +00:00
|
|
|
|
[Route("/Audio/{Id}/stream.{Container}", "HEAD", Summary = "Gets an audio stream")]
|
2014-03-28 19:58:18 +00:00
|
|
|
|
[Route("/Audio/{Id}/stream", "HEAD", Summary = "Gets an audio stream")]
|
2013-02-27 04:19:05 +00:00
|
|
|
|
public class GetAudioStream : StreamRequest
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class AudioService
|
|
|
|
|
/// </summary>
|
2017-03-08 19:05:33 +00:00
|
|
|
|
// TODO: In order to autheneticate this in the future, Dlna playback will require updating
|
|
|
|
|
//[Authenticated]
|
2013-02-27 04:19:05 +00:00
|
|
|
|
public class AudioService : BaseProgressiveStreamingService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the specified request.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public Task<object> Get(GetAudioStream request)
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
2013-03-13 03:57:54 +00:00
|
|
|
|
return ProcessRequest(request, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the specified request.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public Task<object> Head(GetAudioStream request)
|
2013-03-13 03:57:54 +00:00
|
|
|
|
{
|
|
|
|
|
return ProcessRequest(request, true);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-28 20:22:27 +00:00
|
|
|
|
protected override string GetCommandLineArguments(string outputPath, StreamState state, bool isEncoding)
|
2013-02-27 04:19:05 +00:00
|
|
|
|
{
|
2017-02-02 16:02:01 +00:00
|
|
|
|
var encodingOptions = ApiEntryPoint.Instance.GetEncodingOptions();
|
|
|
|
|
|
2017-04-27 18:13:16 +00:00
|
|
|
|
return EncodingHelper.GetProgressiveAudioFullCommandLine(state, encodingOptions, outputPath);
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
2016-11-10 14:41:24 +00:00
|
|
|
|
|
|
|
|
|
public AudioService(IServerConfigurationManager serverConfig, IUserManager userManager, ILibraryManager libraryManager, IIsoManager isoManager, IMediaEncoder mediaEncoder, IFileSystem fileSystem, IDlnaManager dlnaManager, ISubtitleEncoder subtitleEncoder, IDeviceManager deviceManager, IMediaSourceManager mediaSourceManager, IZipClient zipClient, IJsonSerializer jsonSerializer, IAuthorizationContext authorizationContext, IImageProcessor imageProcessor) : base(serverConfig, userManager, libraryManager, isoManager, mediaEncoder, fileSystem, dlnaManager, subtitleEncoder, deviceManager, mediaSourceManager, zipClient, jsonSerializer, authorizationContext, imageProcessor)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-02-27 04:19:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|