diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-03 23:25:01 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-03 23:25:01 -0400 |
| commit | 57a0f80c2c328ba2ca4cc1adfa5bbc6beb17d49f (patch) | |
| tree | 4abdcd1801b70a214f0bcb9b3ea23b2f8b85c12e /MediaBrowser.Api/Playback/Progressive/AudioService.cs | |
| parent | 5234f3dcddbab737700595e18afae24fd2afc88f (diff) | |
revert progressive changes
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/AudioService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/Progressive/AudioService.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/AudioService.cs b/MediaBrowser.Api/Playback/Progressive/AudioService.cs index 2cc8ca7ca..337a290b4 100644 --- a/MediaBrowser.Api/Playback/Progressive/AudioService.cs +++ b/MediaBrowser.Api/Playback/Progressive/AudioService.cs @@ -87,11 +87,6 @@ namespace MediaBrowser.Api.Playback.Progressive var audioTranscodeParams = new List<string>(); - if (string.Equals(Path.GetExtension(outputPath), ".aac", StringComparison.OrdinalIgnoreCase)) - { - audioTranscodeParams.Add("-strict experimental"); - } - var bitrate = GetAudioBitrateParam(state); if (bitrate.HasValue) @@ -113,7 +108,7 @@ namespace MediaBrowser.Api.Playback.Progressive const string vn = " -vn"; - return string.Format("-itsoffset 1 {0} -i {1}{2} -threads 0{5} {3} -id3v2_version 3 -write_id3v1 1 \"{4}\"", + 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), |
