Typos, new defaults, minor updates
This commit is contained in:
parent
fec970d299
commit
a8b6641b53
|
@ -121,7 +121,7 @@ public class Settings {
|
|||
public List<ModelDto> modelsIgnored = new ArrayList<>();
|
||||
public boolean monitorClipboard = false;
|
||||
public int onlineCheckIntervalInSecs = 60;
|
||||
public boolean onlineCheckSkipsPausedModels = false;
|
||||
public boolean onlineCheckSkipsPausedModels = true;
|
||||
public int overviewUpdateIntervalInSecs = 10;
|
||||
@Deprecated
|
||||
public String password = "";
|
||||
|
@ -153,7 +153,7 @@ public class Settings {
|
|||
public String recordingsTableSortColumn = "";
|
||||
public String recordingsTableSortType = "";
|
||||
public String recordingsDir = System.getProperty("user.home") + File.separator + "ctbrec";
|
||||
public DirectoryStructure recordingsDirStructure = DirectoryStructure.FLAT;
|
||||
public DirectoryStructure recordingsDirStructure = DirectoryStructure.ONE_PER_MODEL;
|
||||
public List<ModelDto> recordLater = new ArrayList<>();
|
||||
public boolean recordSingleFile = false;
|
||||
public long recordUntilDefaultDurationInMinutes = 24 * 60L;
|
||||
|
|
|
@ -43,7 +43,7 @@ ignored. This is a collection of the most interesting values:
|
|||
- **httpUserAgent** - The user agent, which is used in the HTTP header, when ctbrec connects to a camsite. This is used to disguise, that it actually is a
|
||||
recording software :)
|
||||
|
||||
- **httpUserAgentMobile** - Same as *httpUserAgent*, but in s0me cases we have to pretend to be a mobile phone :)
|
||||
- **httpUserAgentMobile** - Same as *httpUserAgent*, but in some cases we have to pretend to be a mobile phone :)
|
||||
|
||||
- **key** - Key for the HMAC based authentication. If this is set in server config and contains values, the HMAC authentication is automatically active.
|
||||
|
||||
|
@ -75,8 +75,8 @@ ignored. This is a collection of the most interesting values:
|
|||
|
||||
- **recordingsDir** - Where ctbrec saves the recordings.
|
||||
|
||||
- **recordingsDirStructure** (server only) - [`FLAT`, `ONE_PER_MODEL`, `ONE_PER_RECORDING`] How recordings are stored in the file system. `FLAT` - all
|
||||
recordings in one directory; `ONE_PER_MODEL` - one directory per model; `ONE_PER_RECORDING` - each recordings ends up in its own directory. Change this only,
|
||||
- **recordingsDirStructure** (server only) - [`FLAT`, `ONE_PER_MODEL`, `ONE_PER_GROUP`, `ONE_PER_RECORDING`] How recordings are stored in the file system. `FLAT` - all
|
||||
recordings in one directory; `ONE_PER_MODEL` - one directory per model; `ONE_PER_GROUP` - one directory per model group; `ONE_PER_RECORDING` - each recordings ends up in its own directory. Change this only,
|
||||
if you have `recordSingleFile` set to `true`
|
||||
|
||||
- **recordSingleFile** (server only) - [`true`,`false`] - How recordings are stored in the file system. `true` means, each recording is saved in one large
|
||||
|
|
|
@ -8,7 +8,7 @@ them, but you have to figure it out yourself.
|
|||
To convert the files to another format, you have to remux them. You don't have to reencode them, since the
|
||||
files (usually, have not seen an exception yet) already contain H.264 video and AAC audio. You can remux the
|
||||
files manually with tools like [Avidemux](Avidemux.md), [MKVToolNix](MKVToolNix.md) or
|
||||
[FFmpeg](FFmpeg.md) or use one of the [post-processing](PostProcessing.md) scripts.
|
||||
[FFmpeg](FFmpeg.md) or use the `remux/transcode` step in [post-processing](PostProcessing.md).
|
||||
|
||||
#### Streams are not getting recorded even though the model is online
|
||||
|
||||
|
@ -24,6 +24,8 @@ Use one of the following players:
|
|||
- [mpv](https://mpv.io/installation/)
|
||||
- [VLC](https://www.videolan.org/vlc/)
|
||||
|
||||
Enable hardware acceleration in your player otherwise playback may lag.
|
||||
|
||||
#### How can I playback the server recordings?
|
||||
|
||||
Use one of the following players:
|
||||
|
@ -47,7 +49,7 @@ exists.
|
|||
#### It takes a long time until a recording starts for a model
|
||||
|
||||
You probably have a lot of models in the "Recording" list. CTB Recorder checks the models one after the other. This is done on
|
||||
purpose to not fire too many requests in a short amount of time, because this can cause blocks by the camsites.
|
||||
purpose to not fire too many requests in a short amount of time because this can cause blocks by the camsites.
|
||||
|
||||
#### Can I run several instances of CTB Recorder
|
||||
|
||||
|
|
|
@ -7,11 +7,11 @@ If you expose the server to the internet, I highly recommend enabling authentica
|
|||
|
||||
The archive you downloaded contains a `server.bat` or `server.sh`, which can be used to start the server. On the first start, the server uses a default configuration. Once you terminate the server by pressing <kbd>ctrl</kbd> + <kbd>c</kbd>, the config is stored in your user home.
|
||||
|
||||
On Windows that is `C:\Users\{your user name}\AppData\Roaming\ctbrec\server.json`
|
||||
On Windows that is `C:\Users\{your user name}\AppData\Roaming\ctbrec\<version>\server.json`
|
||||
|
||||
On Linux it is `~/.config/ctbrec/server.json`
|
||||
On Linux it is `~/.config/ctbrec/<version>/server.json`
|
||||
|
||||
On macOS it is `/Users/{your user name}/Library/Preferences/ctbrec`
|
||||
On macOS it is `/Users/{your user name}/Library/Preferences/ctbrec/<version>/server.json`
|
||||
|
||||
You can open this file in a text editor and change it to your likings. You probably only want to change `httpPort` and `recordingsDir`. Most of the other stuff is irrelevant since the server and CTB Recorder use the same config file format. When the server is running, you can connect to it with CTB Recorder by changing the setting "Record location" to "Remote".
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<body id="page-top">
|
||||
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar navbar-expand-lg bg-secondary fixed-top text-uppercase" id="mainNav" style="padding-pottom: 3rem">
|
||||
<nav class="navbar navbar-expand-lg bg-secondary fixed-top text-uppercase" id="mainNav" style="padding-bottom: 3rem">
|
||||
<div class="container">
|
||||
<a class="navbar-brand js-scroll-trigger" href="@{/docs/index.md}"><img src="@{/static/icon64.png}" alt="Logo"/>CTB Recorder</a>
|
||||
<button class="navbar-toggler navbar-toggler-right text-uppercase bg-primary text-white rounded" type="button" data-toggle="collapse"
|
||||
|
|
Loading…
Reference in New Issue