Mod also adds vsync drop

This commit is contained in:
Jan Stabenow 2022-07-21 17:15:31 +02:00
parent bdc212679a
commit 2c480dc67a
No known key found for this signature in database
GPG Key ID: 9C22DD65A9AAF133
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ function createMapping(settings, stream) {
const local = ['-codec:a', 'libvorbis', '-b:a', `${settings.bitrate}k`, '-shortest'];
const mapping = {
global: [],
global: [['-vsync', 'drop']],
local: local,
};

View File

@ -38,7 +38,7 @@ function createMapping(settings, stream) {
}
const mapping = {
global: [],
global: [['-vsync', 'drop']],
local: local,
};

View File

@ -17,7 +17,7 @@ function createMapping(settings, stream) {
const local = ['-codec:a', 'vorbis', '-b:a', `${settings.bitrate}k`, '-qscale:a', '3', '-shortest'];
const mapping = {
global: [],
global: [['-vsync', 'drop']],
local: local,
};