Provide config toggle to disable the 'convert seek' function (#311)

* Provide config toggle to disable the 'convert seek' function in the frontend

* Add convertSeek config option to config.example

* Only send from/to if convertSeek is activated
This commit is contained in:
bellington3 2020-10-17 12:14:36 +00:00 committed by GitHub
parent bfdb349a2b
commit 83863bd66c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 2 deletions

View file

@ -76,6 +76,7 @@ class ConfigTest extends BaseTest
$this->assertIsBool($config->stream);
$this->assertIsBool($config->remux);
$this->assertIsBool($config->defaultAudio);
$this->assertIsBool($config->convertSeek);
$this->assertIsInt($config->audioBitrate);
}