diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-31 19:38:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-31 19:38:07 -0400 |
| commit | ccdd51b3d87eadd55f0e2443f8033edacec68d1b (patch) | |
| tree | 1bcc8c263c033608b222fecb0147e9de39dd99df | |
| parent | 0320f15e9626a2750d8186b87ee15254443d5457 (diff) | |
switched aac encoders
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 93197c387..e08152786 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -484,7 +484,7 @@ namespace MediaBrowser.Api.Playback { if (codec == AudioCodecs.Aac) { - return "aac"; + return "libvo_aacenc"; } if (codec == AudioCodecs.Mp3) { diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs index 9156898fa..5d8a37f1f 100644 --- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs @@ -129,11 +129,6 @@ namespace MediaBrowser.Api.Playback.Hls if (state.AudioStream != null) { - if (string.Equals(codec, "aac", StringComparison.OrdinalIgnoreCase)) - { - args += " -strict experimental"; - } - var channels = GetNumAudioChannelsParam(state.Request, state.AudioStream); if (channels.HasValue) |
