diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-10 08:52:01 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-10 08:52:01 -0500 |
| commit | ec4000404d59ee0e8342805cf7ce0c4ca04023b4 (patch) | |
| tree | dc25abe9fa806b9f676af95ad61b9ac612f252f8 /MediaBrowser.Controller | |
| parent | c23bd68220fc01a6ccd1436fde91c51e473e1ae8 (diff) | |
rework text subtitles
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/MediaInfo/FFMpegManager.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs index ced53299d..644222949 100644 --- a/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs +++ b/MediaBrowser.Controller/MediaInfo/FFMpegManager.cs @@ -235,12 +235,11 @@ namespace MediaBrowser.Controller.MediaInfo /// </summary> /// <param name="mediaPath">The media path.</param> /// <param name="subtitleStream">The subtitle stream.</param> - /// <param name="offset">The offset.</param> /// <param name="outputExtension">The output extension.</param> /// <returns>System.String.</returns> - public string GetSubtitleCachePath(string mediaPath, MediaStream subtitleStream, TimeSpan? offset, string outputExtension) + public string GetSubtitleCachePath(string mediaPath, MediaStream subtitleStream, string outputExtension) { - var ticksParam = offset.HasValue ? "_" + offset.Value.Ticks : ""; + var ticksParam = string.Empty; if (subtitleStream.IsExternal) { |
