* highlight "advanced" features
This commit is contained in:
parent
70adfa0b0f
commit
00b1947fd5
|
@ -4,14 +4,19 @@ body {
|
|||
background-color: #e6e6e6;
|
||||
}
|
||||
|
||||
a,acronym {
|
||||
a, acronym {
|
||||
color: #5c7684;
|
||||
text-decoration: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
a.important {
|
||||
border-bottom: thin dotted #FB9956;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
a img {
|
||||
|
|
|
@ -61,10 +61,10 @@ div.documentation {
|
|||
}
|
||||
|
||||
div.documentation h4 {
|
||||
margin: -5px -5px 5px -5px;
|
||||
margin: -5px -5px 5px -5px;
|
||||
background-color: #DEE3E9;
|
||||
border-bottom: 1px solid #9EADC0;
|
||||
padding: 2px 5px;
|
||||
border-bottom: 1px solid #9EADC0;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
div.documentation pre {
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
def dirs = args.getFolders()
|
||||
|
||||
// watch folders and print files that were added/modified (requires Java 7)
|
||||
dirs.watch { println "Batch: " + it } // default commit delay is 5 minutes
|
||||
dirs.watch { println "Quick: " + it }.setCommitDelay(100) // 100 ms commit delay
|
||||
def watchman = args.getFolders().watch { changes ->
|
||||
println "Processing $changes"
|
||||
rename(file:changes, format:"/media/storage/files/tv/{n}{'/Season '+s}/{episode}")
|
||||
}
|
||||
|
||||
// process after 10 minutes without any changes to the folder
|
||||
watchman.setCommitDelay(10 * 60 * 1000)
|
||||
|
||||
println "Waiting for events"
|
||||
console.readLine()
|
||||
console.readLine() // keep running and watch for changes
|
||||
|
|
|
@ -105,7 +105,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> and <a href="script.html">scripting interface</a> for any kind of <a href="script.html">automation</a></li>
|
||||
<li>Powerful and full-featured <acronym title="command-line interface"><a class="important" href="cli.html">cmdline interface</a></acronym> and <a class="important" href="script.html">scripting interface</a> for any kind of <a href="http://filebot.sourceforge.net/forums/viewtopic.php?f=4&t=5">automation</a></li>
|
||||
</ul>
|
||||
<ul class="next" id="rename">
|
||||
<li>
|
||||
|
@ -122,7 +122,7 @@
|
|||
<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>Accurate and robust and simply awesome file / episode matching logic</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>Powerful and highly customizable <a class="important" 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>
|
||||
<li>Supports movie identification and renaming via <a href="http://www.opensubtitles.org">OpenSubtitles</a> or <a href="http://www.themoviedb.org">TheMovieDB</a></li>
|
||||
<li>Reverse rename files using internal history or the original torrent file</li>
|
||||
|
@ -181,7 +181,7 @@
|
|||
<p>
|
||||
The project is continuously seeking for improvements, so anykind of <a onclick="_gaq.push(['_trackPageview', '/project/feedback'])" target="_blank" href="http://alternativeto.net/software/filebot/reviews">feedback</a> is more than welcome
|
||||
and if there's any questions or problems just start posting in the <a target="_blank" href="http://filebot.sourceforge.net/forums/">forums</a> or check the <a target="_blank" href="http://filebot.sourceforge.net/forums/viewtopic.php?f=3&t=7"><acronym title="frequently asked questions">FAQ</acronym></a>.
|
||||
We're social as well. Follow us on <a onclick="_gaq.push(['_trackPageview', '/project/twitter'])" target="_blank" href="https://twitter.com/#!/filebot_renamer">twitter</a> or become a fan on <a onclick="_gaq.push(['_trackPageview', '/project/facebook'])" target="_blank" href="https://www.facebook.com/filebot">facebook</a>.
|
||||
We're social as well. Follow us on <a onclick="_gaq.push(['_trackPageview', '/project/twitter'])" target="_blank" href="https://twitter.com/#!/filebot_renamer">twitter</a> and become a fan on <a onclick="_gaq.push(['_trackPageview', '/project/facebook'])" target="_blank" href="https://www.facebook.com/filebot">facebook</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
<p>
|
||||
You can easily define your own episode naming scheme. It uses <a href="http://groovy.codehaus.org">Groovy</a> expressions,
|
||||
which means that you can do pretty much anything, especially if you know a little bit about programming.
|
||||
You even get media info bindings.
|
||||
You even get media info bindings. You can find <a href="http://filebot.sourceforge.net/forums/viewtopic.php?f=5&t=2">predefined format expressions</a> for all kinds of scenarios in the forums. Ready for you to just copy & paste.
|
||||
</p>
|
||||
<h2 id="examples">Examples</h2>
|
||||
<p>
|
||||
|
@ -168,17 +168,17 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>special</td>
|
||||
<td>special epsiode number</td>
|
||||
<td>special number</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>sxe</td>
|
||||
<td>season/episode numbers</td>
|
||||
<td>season / episode numbers</td>
|
||||
<td>1x01</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>s00e00</td>
|
||||
<td>season/episode numbers</td>
|
||||
<td>season / episode numbers</td>
|
||||
<td>S01E01</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -340,7 +340,7 @@
|
|||
</div>
|
||||
|
||||
<p class="suggestion">
|
||||
Need some help getting started? Check the <a href="http://filebot.sourceforge.net/forums/viewforum.php?f=4">forums</a>.
|
||||
Need some help getting started? Check the <a href="http://filebot.sourceforge.net/forums/viewforum.php?f=5">forums</a>.
|
||||
</p>
|
||||
|
||||
<div class="metrics">
|
||||
|
|
Loading…
Reference in New Issue