1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

* update website with new feature descs/examples

This commit is contained in:
Reinhard Pointner 2011-11-03 17:46:33 +00:00
parent 2cc68fd384
commit 786370601b
4 changed files with 34 additions and 5 deletions

View File

@ -52,9 +52,6 @@ public class ArgumentBean {
@Option(name = "--encoding", usage = "Character encoding", metaVar = "[UTF-8, windows-1252, GB18030, etc]")
public String encoding;
@Option(name = "--log", usage = "Log level", metaVar = "[all, config, info, warning]")
public String log = "all";
@Option(name = "-list", usage = "Fetch episode list")
public boolean list = false;
@ -64,6 +61,9 @@ public class ArgumentBean {
@Option(name = "-script", usage = "Run Groovy script")
public String script = null;
@Option(name = "--log", usage = "Log level", metaVar = "[all, config, info, warning]")
public String log = "all";
@Option(name = "-open", usage = "Open file in GUI", metaVar = "file")
public boolean open = false;

View File

@ -18,6 +18,13 @@ a img {
border: none;
}
h3 {
font-size: 14px;
margin-top: 25px;
margin-left: 15px;
margin-bottom: -8px;
}
.section h2.reference {
padding-top: 25px;
}

View File

@ -66,6 +66,7 @@
tv shows and movies, fetching subtitles or checking sfv files.
</p>
<h2 id="examples">Examples</h2>
<h3 id="rename">Rename</h3>
<p>
<code><span class="cmd">filebot</span> <span class="option">-rename</span> <span class="argument">path/to/episodes</span></code>
Rename given episodes or movies.
@ -86,6 +87,7 @@
<code><span class="cmd">filebot</span> <span class="option">-rename</span> <span class="argument">"movie.avi"</span> <span class="option">-q</span> <span class="argument">Avatar</span> <span class="option">--db</span> <span class="argument">OpenSubtitles</span></code>
Rename a single movie looking up movie info via file hash or using the given movie title.
</p>
<h3 id="subtitles">Fetch Subtitles</h3>
<p>
<code><span class="cmd">filebot</span> <span class="option">-get-subtitles</span> <span class="argument">path/to/episodes</span></code>
Fetch subtitles for the given files. Lookup matching subtitles via file hash.
@ -94,6 +96,7 @@
<code><span class="cmd">filebot</span> <span class="option">-get-subtitles</span> <span class="argument">path/to/movie</span> <span class="option">--q</span> <span class="argument">Avatar</span> <span class="option">--lang</span> <span class="argument">zh</span> <span class="option">--output</span> <span class="argument">srt</span> <span class="option">--encoding</span> <span class="argument">utf8</span></code>
Fetch subtitles and force output format. Lookup subtitles via file hash and given search query.
</p>
<h3 id="verification">File Verification</h3>
<p>
<code><span class="cmd">filebot</span> <span class="option">-check</span> <span class="argument">path/to/files</span></code>
Compute SFV file and automatically determine output file.
@ -106,10 +109,19 @@
<code><span class="cmd">filebot</span> <span class="option">-check</span> <span class="argument">path/to/checksum.md5</span></code>
Check file integrity using the given checksum file.
</p>
<h3 id="scripting">Scripting</h3>
<p>
<code><span class="cmd">filebot</span> <span class="option">-list</span> <span class="option">--db</span> <span class="argument">thetvdb</span> <span class="option">--q</span> <span class="argument">Dexter</span> <span class="option">--format</span> <span class="argument">"{s}x{e.pad(2)} {t}"</span></code>
Fetch episode list and print to console.
</p>
<p>
<code><span class="cmd">filebot</span> <span class="option">-mediainfo</span> <span class="argument">path/to/files</span> <span class="option">--format</span> <span class="argument">"{fn} {resolution} {vc} {af}"</span></code>
Read media info and print to console.
</p>
<p>
<code><span class="cmd">filebot</span> <span class="option">-script</span> <span class="argument">"path/to/script.groovy"</span> <span class="argument">args...</span></code>
Execute custom Groovy script.
</p>
<h2 class="reference" id="arguments">
Argument Reference
@ -195,6 +207,16 @@
<td>print episode list</td>
<td></td>
</tr>
<tr>
<td>-mediainfo</td>
<td>print media info</td>
<td></td>
</tr>
<tr>
<td>-script</td>
<td><a href="script.html">execute script</a></td>
<td></td>
</tr>
<tr>
<td>--log</td>
<td>log level</td>

View File

@ -88,7 +88,7 @@
<ul>
<li>A simple user-interface tuned for drag-n-drop <small class="comment">(no need to bother with file dialogs)</small></li>
<li>Platform-independent and straight-forward application deployment</li>
<li>Powerful and full-featured <a href="cli.html"><acronym title="command-line interface">CLI</acronym></a> for <a href="cli.html">scripts and automation</a></li>
<li>Powerful and full-featured <a href="cli.html"><acronym title="command-line interface">CLI</acronym></a> and <a href="script.html">scripting interface</a> for any kind of <a href="script.html">automation</a></li>
</ul>
<ul class="next" id="rename">
<li>
@ -103,7 +103,7 @@
Rename hundreds of media files in a matter of seconds
</li>
<li>Fetch episode info from <a href="http://www.tvrage.com">TVRage</a>, <a href="http://anidb.net">AniDB</a>, <a href="http://www.imdb.com">IMDb</a>, <a href="http://thetvdb.com">TheTVDB</a> or <a href="http://www.serienjunkies.de">Serienjunkies</a></li>
<li>Highly accurate file / episode matching</li>
<li>Accurate and robust file / episode matching</li>
<li>Series / Anime name auto-detection</li>
<li>Powerful and highly customizable <a href="naming.html">episode naming scheme</a><br/><span class="note mediainfo">MediaInfo optional</span></li>
<li>Supports language preferences for series and episode titles</li>