diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-12 23:39:22 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-12 23:39:22 -0400 |
| commit | e98665a0917f93eba79970de44c68c9a88b78bb8 (patch) | |
| tree | 8f2b8dd86a363b58fc47610c9565650a3587309c /MediaBrowser.Model/IO/IZipClient.cs | |
| parent | f8f17efd54426067e8e5f7624ad1549125229426 (diff) | |
added ffmpeg downloading for mono
Diffstat (limited to 'MediaBrowser.Model/IO/IZipClient.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/IZipClient.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IZipClient.cs b/MediaBrowser.Model/IO/IZipClient.cs index 694c393aa..1fa3e0271 100644 --- a/MediaBrowser.Model/IO/IZipClient.cs +++ b/MediaBrowser.Model/IO/IZipClient.cs @@ -38,5 +38,21 @@ namespace MediaBrowser.Model.IO /// <param name="targetPath">The target path.</param> /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> void ExtractAllFrom7z(Stream source, string targetPath, bool overwriteExistingFiles); + + /// <summary> + /// Extracts all from tar. + /// </summary> + /// <param name="sourceFile">The source file.</param> + /// <param name="targetPath">The target path.</param> + /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> + void ExtractAllFromTar(string sourceFile, string targetPath, bool overwriteExistingFiles); + + /// <summary> + /// Extracts all from tar. + /// </summary> + /// <param name="source">The source.</param> + /// <param name="targetPath">The target path.</param> + /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> + void ExtractAllFromTar(Stream source, string targetPath, bool overwriteExistingFiles); } } |
