diff --git a/README.md b/README.md index ae9a6a2..e753af6 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,19 @@ Audio/Video Library Analytics & Transcode/Remux Automation
----------------------------------------------------------------------------------------
-## Transcode management
-
---------------------------------------------------------------------------------------
## Stats
-
+
---------------------------------------------------------------------------------------
-## Search
-
+## Nodes
+
---------------------------------------------------------------------------------------
-## Plugins
-
--------------------------------------------------------------------------------------------------------------
+## Job reports
+
+---------------------------------------------------------------------------------------
+## Property explorer
+
+---------------------------------------------------------------------------------------
+## Worker verdict history
+
+---------------------------------------------------------------------------------------
+## Plugin stack system
+
+---------------------------------------------------------------------------------------
+## Property search
+
+---------------------------------------------------------------------------------------
+## Library schedule
+
+---------------------------------------------------------------------------------------
+
Tdarr is extremely modular/configurable and the main idea behind it is creating a plugin stack to clean up/standardise your files. For example, a typical plugin stack might look like this:
@@ -90,10 +114,10 @@ https://i.imgur.com/RaKnq2c.png
That file has 3 streams - a video, audio and subtitle stream. Subtitles and closed captions are very different. Where is the closed caption data in this example? It's embedded inside the h264 video stream.
-Extra streams and closed captions which you don't need can cause problems with direct playing and syncing files, so you might as well remove them (I recommend using Bazarr for subtitles). Even when playing files in programs such as VLC or Kodi, subtitles/closed captions can cause playback delays and make things stuttery for a few seconds when jumping around the video.
+Extra streams and closed captions which you don't need can cause problems with direct playing and syncing files, so you might as well remove them (it's recommended to use something like Bazarr for subtitles). Even when playing files in programs such as VLC or Kodi, subtitles/closed captions can cause playback delays and make things stuttery for a few seconds when jumping around the video.
-Extra streams can also take up a lot of space. Don't be surprised to see some files in your library with 15+ audio/commentary/subtitle tracks in a bunch of different languages . These can take up an extra GB+ per file.
+Extra streams can also take up a lot of space. Don't be surprised to see some files in your library with 15+ audio/commentary/subtitle tracks in a bunch of different languages. These can take up an extra GB+ per file.
The plugin creator is split into 'Filters' and 'Actions'. Filters encapsulate the actions, so the actions will only be carried out if the filter conditions are met.
@@ -136,7 +160,7 @@ Some of the actions have become quite complicated so take a bit more time. For e
If you have a request for a new filter/action, then try and think of it generically so I can implement it in way that other people can configure and apply it to their (slightly) different circumstances. Request on GitHub,Reddit or Discord.
-I like to maximise the chance of direct play, so my plugin stack looks like this:
+For example, to maximize direct play, a plugin stack like this can be used:
(1) If not in h264, transcode into h264 [h264 is a more universal video codec than others]
@@ -149,13 +173,4 @@ I like to maximise the chance of direct play, so my plugin stack looks like this
(5) Add aac stereo audio if none (eng preferred) [very universal audio codec/channel count]
- (6) Remove meta-data if title meta detected [Stops annoying titles appearing in Plex]
-
-
-
-
-
-
-
-
-
+ (6) Remove meta-data if title meta detected [Stops annoying titles appearing in Plex]
\ No newline at end of file