No video jibri

Hello,
I have tried a lot and I have seen some formus before posting,

I installed Jitsi Jibri in two separate machines, I managed to register with jibri, I got the mp4 file but there is no video there is only sound with this image
I use openjdk version “1.8.0_292”.

can you give me some hints or an explanation of where this image comes from please and how I can record the audio and video

Thnks

Share your jibri.conf.
What do you see when you run the following command:

nano /opt/jitsi/jibri/launch.sh

@Freddie Hello,

My jibri conf :

jibri {

// A unique identifier for this Jibri
// TODO: eventually this will be required with no default
id = ""
// Whether or not Jibri should return to idle state after handling
// (successfully or unsuccessfully) a request. A value of ‘true’
// here means that a Jibri will NOT return back to the IDLE state
// and will need to be restarted in order to be used again.
single-use-mode = false
api {
http {
external-api-port = 2222
internal-api-port = 3333
 }
xmpp {
// See example_xmpp_envs.conf for an example of what is expected here
environments = [
{
name = "prod environment"
xmpp-server-hosts = ["meet.test.dev"]
xmpp-domain = "meet.test.dev"


            control-muc {
                domain = "internal.auth.meet.test.dev"
                room-name = "JibriBrewery"
                nickname = "jibri-nickname"
            }

            control-login {
                domain = "auth.meet.test.dev"
                username = "jibri"
                password = "test"
            }

            call-login {
                domain = "sfu-recorder.test.com"
                username = "recorder"
                password = "test"
            }

            strip-from-room-domain = "conference."
            usage-timeout = 0
            trust-all-xmpp-certs = true
         }
      ]
   }
 }
recording {
recordings-directory = "/srv/recordings"
# TODO: make this an optional param and remove the default
finalize-script = "/etc/jitsi/jibri/finalize_recording.sh"
 }
streaming {
// A list of regex patterns for allowed RTMP URLs. The RTMP URL used
// when starting a stream must match at least one of the patterns in
// this list.
rtmp-allow-list = [
// By default, all services are allowed
".*"
   ]
 }
ffmpeg {
resolution = "320x200"
// The audio source that will be used to capture audio on Linux
audio-source = "alsa"
// The audio device that will be used to capture audio on Linux
audio-device = "plug:bsnoop"
 }
chrome {
// The flags which will be passed to chromium when launching
flags = [
"--use-fake-ui-for-media-stream",
"--start-maximized",
"--kiosk",
"--enabled",
"--disable-infobars",
"--no-sandbox",
"--autoplay-policy=no-user-gesture-required",
"--headless",
"--log-file=/var/log/jitsi/jibri/chromedriver.log",
"--ignore-certificate-errors"
   ]
 }
stats {
enable-stats-d = true
 }
webhook {
// A list of subscribers interested in receiving webhook events
subscribers = []
 }
jwt-info {
// The path to a .pem file which will be used to sign JWT tokens used in webhook
// requests. If not set, no JWT will be added to webhook requests.
# signing-key-path = "/path/to/key.pem"

// The kid to use as part of the JWT
# kid = "key-id"

// The issuer of the JWT
# issuer = "issuer"

// The audience of the JWT
# audience = "audience"

// The TTL of each generated JWT.  Can't be less than 10 minutes.
# ttl = 1 hour

 }
call-status-checks {
// If all clients have their audio and video muted and if Jibri does not
// detect any data stream (audio or video) comming in, it will stop
// recording after NO_MEDIA_TIMEOUT expires.
no-media-timeout = 3 minutes

// If all clients have their audio and video muted, Jibri consideres this
// as an empty call and stops the recording after ALL_MUTED_TIMEOUT expires.
all-muted-timeout = 10 minutes

// When detecting if a call is empty, Jibri takes into consideration for how
// long the call has been empty already. If it has been empty for more than
// DEFAULT_CALL_EMPTY_TIMEOUT, it will consider it empty and stop the recording.
default-call-empty-timeout = 130 seconds

   }

}

when i run the command

#!/bin/bash

exec /usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/bin/java -Djava.util.logging.config.file=/etc/jitsi/jibri/logging.properties -Dconfig.file="/etc/jitsi/jibri/jibri.conf" -jar /opt/jitsi/jibri/jibri.jar --config "/etc/jitsi/jibri/config.json"

thank you

Is that the host you added in your prosody config? Is that the domain your registered user “recorder” to?

@Freddie yes it’s that recorder in prosody config

and look here in /srv/recordings

but all they are all without video just audio with background static

Screenshot from 2022-04-12 20-57-32

Can you share your domain’s prosody cfg.lua file?

@Freddie

unlimited_jids = { "focus@auth.meet.test.dev", "jvb@auth.meet.test.dev" }
plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }

-- domain mapper options, must at least have domain base set to use the mapper
muc_mapper_domain_base = "meet.test.dev";
turncredentials_secret = "kqSA9F4x";


cross_domain_bosh = true;
consider_bosh_secure = true;

VirtualHost "meet.test.dev"
        -- enabled = false -- Remove this line to enable this host
        authentication = "anonymous"
        -- Properties below are modified by jitsi-meet-tokens package config
        -- and authentication above is switched to "token"
        --app_id="example_app_id"
        --app_secret="example_app_secret"
        -- Assign this host a certificate for TLS, otherwise it would use the one
        -- set in the global section (if any).
        -- Note that old-style SSL on port 5223 only supports one certificate, and will always
        -- use the global one.
        ssl = {
                key = "/etc/prosody/certs/meet.test.dev.key";
                certificate = "/etc/prosody/certs/meet.test.dev.crt";

        }
        speakerstats_component = "speakerstats.meet.test.dev"
        conference_duration_component = "conferenceduration.meet.test.dev"
        -- we need bosh
        modules_enabled = {
            "bosh";
            "pubsub";
            "ping"; -- Enable mod_ping
            "speakerstats";
            "turncredentials";
            "conference_duration";
        }
        c2s_require_encryption = false

Component "internal.auth.meet.test.dev" "muc"
    modules_enabled = {
        "ping";
    }
    storage = "memory"
    muc_room_cache_size = 1000

VirtualHost "sfu-recorder.test.com"
    modules_enabled = {
        "ping";
   }
    authentication = "internal_plain"


Component "conference.meet.test.dev" "muc"
    restrict_room_creation = true
    storage = "sql"
    sql = { driver = "SQLite3", database = "prosody.sqlite" }
    modules_enabled = {
        "muc_meeting_id";
        "muc_domain_mapper";
        -- "token_verification";
    }
    admins = { "focus@auth.meet.test.dev" }
    muc_room_locking = false
    muc_room_default_public_jids = true

-- internal muc component
Component "internal.auth.meet.test.dev" "muc"
    storage = "sql"
    sql = { driver = "SQLite3", database = "prosody.sqlite" }
    modules_enabled = {
      "ping";
    }
    admins = { "focus@auth.meet.test.dev", "jvb@auth.meet.test.dev" }

VirtualHost "auth.meet.test.dev"
    modules_enabled = { "limits_exception"; }
    ssl = {
        key = "/etc/prosody/certs/auth.meet.test.dev.key";
        certificate = "/etc/prosody/certs/auth.meet.test.dev.crt";
    }
    authentication = "internal_plain"

Component "focus.meet.test.dev" "client_proxy"
    target_address = "focus@auth.meet.test.dev"
    component_secret = "WdmA80r0"

Component "speakerstats.meet.test.dev" "speakerstats_component"
    muc_component = "conference.meet.test.dev"

Component "conferenceduration.meet.test.dev" "conference_duration_component"
    muc_component = "conference.meet.test.dev"
Component "callcontrol.meet.test.dev" component_secret = "qyW29PIG"

jicofo

jicofo {
  jigasi: {
    brewery-jid: "JigasiBrewery@internal.auth.meet.test.dev" 
 }
  xmpp: {
    client: {
      client-proxy: focus.meet.test.dev
    }
    trusted-domains: [ "recorder.meet.test.dev", "sfu-recorder.test.com" ]
  
 }
}

This is not used anymore. Compare your config with the reference below:

Also, this resolution is really low. Not sure what impact that could have on your recording:

@Freddie thank for your help but
i change resolution to 1280x720 in jibri conf and in xorg-video-dummy.conf
and i deleted this line from prosody

Component "callcontrol.meet.test.dev" component_secret = "qyW29PIG"

but no changed, always no video only audio

Did you restart all services?

yes

systemctl restart jitsi-videobridge2 prosody jicofo

and
systemctl restart jibri
systemctl restart jibri-xorg.service

You changed the resolution in xorg as well, right?
You might also want to consider trying java 11 instead.

Meanwhile, share your jibri, xorg and ffmpeg logs.

Also, what version of Jitsi and Jibri are you running? What version did you upgrade from?

@Freddie thanks for your help
xorg log :

[1654139.617] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[1654139.617] Build Operating System: linux Ubuntu
[1654139.617] Current Operating System: Linux record-test 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
[1654139.617] Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.0-105-generic root=UUID=8fb3f9a6-0887-4be6-97d6-52f4a6c4108d ro
[1654139.618] Build Date: 14 December 2021  02:14:13PM
[1654139.618] xorg-server 2:1.20.13-1ubuntu1~20.04.2 (For technical support please see http://www.ubuntu.com/support) 
[1654139.618] Current version of pixman: 0.38.4
[1654139.618] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[1654139.618] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[1654139.618] (++) Log file: "/var/log/jitsi/jibri/xorg.log", Time: Tue Apr 12 19:23:49 2022
[1654139.618] (++) Using config file: "/etc/jitsi/jibri/xorg-video-dummy.conf"
[1654139.618] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[1654139.618] (==) ServerLayout "dummy_layout"
[1654139.618] (**) |-->Screen "dummy_screen" (0)
[1654139.618] (**) |   |-->Monitor "dummy_monitor"
[1654139.618] (**) |   |-->Device "dummy_videocard"
[1654139.618] (**) Option "DontVTSwitch" "true"
[1654139.618] (**) Option "AllowMouseOpenFail" "true"
[1654139.618] (**) Option "AutoAddDevices" "false"
[1654139.618] (**) Option "AutoEnableDevices" "false"
[1654139.618] (**) Not automatically adding devices
[1654139.618] (**) Not automatically enabling devices
[1654139.618] (==) Automatically adding GPU devices
[1654139.618] (==) Automatically binding GPU devices
[1654139.618] (==) Max clients allowed: 256, resource mask: 0x1fffff
[1654139.618] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (WW) The directory "/usr/share/fonts/X11/Type1" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[1654139.618] 	Entry deleted from font path.
[1654139.618] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	built-ins
[1654139.618] (==) ModulePath set to "/usr/lib/xorg/modules"
[1654139.618] (==) |-->Input Device "<default pointer>"
[1654139.618] (==) |-->Input Device "<default keyboard>"
[1654139.618] (==) The core pointer device wasn't specified explicitly in the layout.
	Using the default mouse configuration.
[1654139.618] (==) The core keyboard device wasn't specified explicitly in the layout.
	Using the default keyboard configuration.
[1654139.618] (II) Loader magic: 0x55fea6062020
[1654139.618] (II) Module ABI versions:
[1654139.618] 	X.Org ANSI C Emulation: 0.4
[1654139.618] 	X.Org Video Driver: 24.1
[1654139.618] 	X.Org XInput driver : 24.1
[1654139.618] 	X.Org Server Extension : 10.0
[1654139.620] (EE) systemd-logind: failed to get session: PID 80831 does not belong to any known session
[1654139.621] (II) xfree86: Adding drm device (/dev/dri/card0)
[1654139.641] (--) PCI:*(11@0:0:0) 102b:0534:1028:0600 rev 1, Mem @ 0x90000000/16777216, 0x91800000/16384, 0x91000000/8388608, BIOS @ 0x????????/131072
[1654139.641] (II) LoadModule: "glx"
[1654139.641] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[1654139.642] (II) Module glx: vendor="X.Org Foundation"
[1654139.642] 	compiled for 1.20.13, module version = 1.0.0
[1654139.642] 	ABI class: X.Org Server Extension, version 10.0
[1654139.642] (II) LoadModule: "dummy"
[1654139.642] (II) Loading /usr/lib/xorg/modules/drivers/dummy_drv.so
[1654139.642] (II) Module dummy: vendor="X.Org Foundation"
[1654139.642] 	compiled for 1.20.0, module version = 0.3.8
[1654139.642] 	Module class: X.Org Video Driver
[1654139.642] 	ABI class: X.Org Video Driver, version 24.0
[1654139.642] (II) LoadModule: "mouse"
[1654139.642] (WW) Warning, couldn't open module mouse
[1654139.642] (EE) Failed to load module "mouse" (module does not exist, 0)
[1654139.642] (II) LoadModule: "kbd"
[1654139.642] (WW) Warning, couldn't open module kbd
[1654139.642] (EE) Failed to load module "kbd" (module does not exist, 0)
[1654139.642] (II) DUMMY: Driver for Dummy chipsets: dummy
[1654139.642] (WW) Falling back to old probe method for dummy
[1654139.642] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[1654139.642] (II) DUMMY(0): Chipset is a DUMMY
[1654139.642] (**) DUMMY(0): Depth 24, (--) framebuffer bpp 32
[1654139.642] (==) DUMMY(0): RGB weight 888
[1654139.642] (==) DUMMY(0): Default visual is TrueColor
[1654139.642] (==) DUMMY(0): Using gamma correction (1.0, 1.0, 1.0)
[1654139.642] (DB) xf86MergeOutputClassOptions unsupported bus type 0
[1654139.642] (**) DUMMY(0): VideoRAM: 192000 kByte
[1654139.642] (--) DUMMY(0): Max Clock: 300000 kHz
[1654139.642] (II) DUMMY(0): dummy_monitor: Using hsync range of 5.00-1000.00 kHz
[1654139.642] (II) DUMMY(0): dummy_monitor: Using vrefresh range of 5.00-200.00 Hz
[1654139.642] (II) DUMMY(0): Clock range:  11.00 to 300.00 MHz
[1654139.642] (II) DUMMY(0): Not using mode "32768x32768" (insufficient memory for mode)
[1654139.642] (II) DUMMY(0): Not using mode "32768x16384" (insufficient memory for mode)
[1654139.642] (II) DUMMY(0): Not using mode "16384x8192" (insufficient memory for mode)
[1654139.642] (II) DUMMY(0): Not using mode "8192x4096" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "5496x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "5280x1080" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "5280x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "5120x3200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "4800x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3840x2880" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3840x2560" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3840x2048" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3840x1080" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3600x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "3288x1080" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "2048x2048" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "2048x1536" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "2560x1600" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "2560x1440" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1920x1440" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1920x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1920x1080" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1680x1050" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1600x1200" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1600x900" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1440x900" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1366x768" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1280x1024" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1280x800" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1280x768" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1360x768" (width too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1024x768" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "768x1024" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "800x1280" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1280x800" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "720x1280" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "768x1024" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1024x768" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "600x1024" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "536x960" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "600x800" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "480x854" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "480x800" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "800x1242" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1280x762" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "720x1242" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "768x986" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "1024x730" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "600x986" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "536x922" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "600x762" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "480x810" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using mode "480x762" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using default mode "1024x768i" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using default mode "1280x960" (height too large for virtual size)
[1654139.642] (II) DUMMY(0): Not using default mode "1280x960" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1792x1344" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1792x1344" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1856x1392" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1856x1392" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1152x864" (height too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x1050" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x1050" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x1050" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x1050" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1600x1024" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "320x180" (bad mode clock/interlace/doublescan)
[1654139.643] (II) DUMMY(0): Not using default mode "320x180" (bad mode clock/interlace/doublescan)
[1654139.643] (II) DUMMY(0): Not using default mode "720x405" (monitor doesn't support reduced blanking)
[1654139.643] (II) DUMMY(0): Not using default mode "360x202" (bad mode clock/interlace/doublescan)
[1654139.643] (II) DUMMY(0): Not using default mode "864x486" (monitor doesn't support reduced blanking)
[1654139.643] (II) DUMMY(0): Not using default mode "960x540" (monitor doesn't support reduced blanking)
[1654139.643] (II) DUMMY(0): Not using default mode "1024x576" (monitor doesn't support reduced blanking)
[1654139.643] (II) DUMMY(0): Not using default mode "1368x768" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1368x768" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2048x1152" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2048x1152" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2880x1620" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1440x810" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2880x1620" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1440x810" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3200x1800" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3200x1800" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3840x2160" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3840x2160" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "4096x2304" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2048x1152" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "4096x2304" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "2048x1152" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "5120x2880" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "5120x2880" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "7680x4320" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3840x2160" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "7680x4320" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "3840x2160" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "15360x8640" (insufficient memory for mode)
[1654139.643] (II) DUMMY(0): Not using default mode "7680x4320" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "15360x8640" (insufficient memory for mode)
[1654139.643] (II) DUMMY(0): Not using default mode "7680x4320" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x900" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using default mode "1400x900" (width too large for virtual size)
[1654139.643] (II) DUMMY(0): Not using mode "5120x3200" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "3840x2880" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "3840x2560" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "3840x2048" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "2048x2048" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "2560x1600" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1920x1440" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1920x1200" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1920x1080" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1600x1200" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1680x1050" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1600x900" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1400x1050" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1440x900" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1280x1024" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1366x768" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1280x800" (no mode of this name)
[1654139.643] (II) DUMMY(0): Not using mode "1024x768" (no mode of this name)
[1654139.644] (II) DUMMY(0): Virtual size is 1280x720 (pitch 1280)
[1654139.644] (**) DUMMY(0): *Mode "1024x600": 18.3 MHz, 15.9 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "1024x600"x25.1   18.26  1024 1056 1120 1152  600 614 617 631 (15.9 kHz z)
[1654139.644] (**) DUMMY(0): *Mode "800x600": 14.5 MHz, 15.9 kHz, 25.2 Hz
[1654139.644] (II) DUMMY(0): Modeline "800x600"x25.2   14.50  800 832 880 912  600 614 617 631 (15.9 kHz z)
[1654139.644] (**) DUMMY(0): *Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "320x200"x85.3   15.75  320 336 368 416  200 200 202 222 doublescan -hsync +vsync (37.9 kHz zd)
[1654139.644] (**) DUMMY(0):  Mode "1280x720": 27.4 MHz, 18.9 kHz, 25.0 Hz
[1654139.644] (II) DUMMY(0): Modeline "1280x720"x25.0   27.41  1280 1312 1416 1448  720 737 740 757 (18.9 kHz)
[1654139.644] (**) DUMMY(0):  Mode "1280x682": 25.9 MHz, 18.0 kHz, 25.0 Hz
[1654139.644] (II) DUMMY(0): Modeline "1280x682"x25.0   25.85  1280 1312 1408 1440  682 698 701 717 (18.0 kHz)
[1654139.644] (**) DUMMY(0):  Default mode "960x720": 170.7 MHz, 128.5 kHz, 85.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x720"x85.0  170.68  960 1036 1144 1328  720 720 722 756 doublescan -hsync +vsync (128.5 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x720": 148.5 MHz, 112.5 kHz, 75.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x720"x75.0  148.50  960 1032 1144 1320  720 720 722 750 doublescan -hsync +vsync (112.5 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "928x696": 144.0 MHz, 112.5 kHz, 75.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "928x696"x75.0  144.00  928 992 1104 1280  696 696 698 750 doublescan -hsync +vsync (112.5 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "896x672": 130.5 MHz, 106.3 kHz, 75.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "896x672"x75.0  130.50  896 944 1052 1228  672 672 674 708 doublescan -hsync +vsync (106.3 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "1024x576": 78.4 MHz, 71.0 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "1024x576": 98.5 MHz, 71.6 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "1024x576": 46.5 MHz, 35.9 kHz, 59.9 Hz
[1654139.644] (II) DUMMY(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x600": 77.0 MHz, 74.0 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x600": 77.0 MHz, 74.0 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x600": 96.6 MHz, 74.6 kHz, 59.9 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[1654139.644] (**) DUMMY(0):  Mode "1024x562": 17.0 MHz, 14.8 kHz, 25.0 Hz
[1654139.644] (II) DUMMY(0): Modeline "1024x562"x25.0   17.03  1024 1056 1120 1152  562 575 578 591 (14.8 kHz)
[1654139.644] (**) DUMMY(0):  Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
[1654139.644] (II) DUMMY(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x540": 69.2 MHz, 66.6 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x540": 69.2 MHz, 66.6 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x540": 86.5 MHz, 67.2 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "960x540": 40.8 MHz, 33.5 kHz, 59.6 Hz
[1654139.644] (II) DUMMY(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[1654139.644] (**) DUMMY(0):  Mode "960x536": 15.2 MHz, 14.1 kHz, 25.0 Hz
[1654139.644] (II) DUMMY(0): Modeline "960x536"x25.0   15.23  960 992 1048 1080  536 548 551 563 (14.1 kHz)
[1654139.644] (**) DUMMY(0):  Mode "960x498": 14.1 MHz, 13.1 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "960x498"x25.1   14.09  960 992 1040 1072  498 509 511 523 (13.1 kHz)
[1654139.644] (**) DUMMY(0):  Mode "800x562": 13.5 MHz, 14.8 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "800x562"x25.1   13.52  800 832 880 912  562 575 578 591 (14.8 kHz)
[1654139.644] (**) DUMMY(0):  Default mode "840x525": 107.4 MHz, 93.9 kHz, 85.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "840x525"x85.0  107.38  840 904 992 1144  525 526 529 552 doublescan -hsync +vsync (93.9 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "840x525": 93.5 MHz, 82.3 kHz, 75.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "840x525"x75.0   93.50  840 900 988 1136  525 526 529 549 doublescan -hsync +vsync (82.3 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "840x525": 87.0 MHz, 76.6 kHz, 69.9 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "840x525"x69.9   87.00  840 900 988 1136  525 526 529 548 doublescan -hsync +vsync (76.6 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "840x525": 73.1 MHz, 65.3 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "840x525": 73.1 MHz, 65.3 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "864x486": 32.5 MHz, 30.3 kHz, 59.9 Hz
[1654139.644] (II) DUMMY(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[1654139.644] (**) DUMMY(0):  Mode "848x480": 12.1 MHz, 12.7 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "848x480"x25.1   12.09  848 880 920 952  480 491 493 505 (12.7 kHz)
[1654139.644] (**) DUMMY(0):  Mode "800x480": 11.5 MHz, 12.7 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "800x480"x25.1   11.46  800 832 872 904  480 491 493 505 (12.7 kHz)
[1654139.644] (**) DUMMY(0):  Mode "848x442": 11.1 MHz, 11.6 kHz, 25.1 Hz
[1654139.644] (II) DUMMY(0): Modeline "848x442"x25.1   11.09  848 880 920 952  442 452 454 465 (11.6 kHz)
[1654139.644] (**) DUMMY(0):  Default mode "700x525": 89.6 MHz, 93.8 kHz, 85.1 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "700x525"x85.1   89.63  700 752 828 956  525 525 527 551 doublescan -hsync +vsync (93.8 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "700x525"x74.8   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync (81.5 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "700x525": 72.5 MHz, 76.5 kHz, 70.1 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "700x525"x70.1   72.53  700 748 824 948  525 525 527 546 doublescan -hsync +vsync (76.5 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "800x450": 59.1 MHz, 56.0 kHz, 59.9 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "640x512"x85.0   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync (91.1 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
[1654139.644] (II) DUMMY(0): Modeline "640x512"x75.0   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync (80.0 kHz d)
[1654139.644] (**) DUMMY(0):  Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "720x450": 53.2 MHz, 55.9 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "720x450"x59.9   53.25  720 760 836 952  450 451 454 467 doublescan -hsync +vsync (55.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "700x450": 51.8 MHz, 56.0 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 74.2 MHz, 85.9 kHz, 85.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x480"x85.1   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync (85.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x480": 25.2 MHz, 31.5 kHz, 59.9 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "720x405": 22.5 MHz, 25.1 kHz, 59.5 Hz
[1654139.645] (II) DUMMY(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
[1654139.645] (II) DUMMY(0): Modeline "720x400"x85.0   35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "684x384": 42.6 MHz, 47.8 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "680x384": 36.0 MHz, 47.4 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "680x384"x60.0   36.00  680 704 720 760  384 385 390 395 doublescan +hsync -vsync (47.4 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "680x384": 42.4 MHz, 47.7 kHz, 59.8 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "680x384"x59.8   42.38  680 716 784 888  384 385 390 399 doublescan -hsync +vsync (47.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x400"x85.1   31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x400": 35.5 MHz, 49.3 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x400": 41.8 MHz, 49.7 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 71.7 MHz, 91.5 kHz, 100.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x100.1   71.73  576 616 680 784  432 432 434 457 doublescan -hsync +vsync (91.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 60.8 MHz, 77.5 kHz, 85.2 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x85.2   60.75  576 608 672 784  432 432 434 455 doublescan +hsync -vsync (77.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 59.8 MHz, 77.1 kHz, 85.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x85.1   59.83  576 612 676 776  432 432 434 453 doublescan -hsync +vsync (77.1 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x75.0   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (67.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 52.5 MHz, 67.6 kHz, 75.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x75.0   52.49  576 612 676 776  432 432 434 451 doublescan -hsync +vsync (67.6 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 48.4 MHz, 63.0 kHz, 70.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x70.0   48.38  576 612 672 768  432 432 434 450 doublescan -hsync +vsync (63.0 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "576x432": 40.8 MHz, 53.7 kHz, 60.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "576x432"x60.1   40.81  576 608 668 760  432 432 434 447 doublescan -hsync +vsync (53.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x360": 37.2 MHz, 44.8 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x360": 18.0 MHz, 22.5 kHz, 59.8 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x360": 31.9 MHz, 44.3 kHz, 59.8 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x360": 17.8 MHz, 22.2 kHz, 59.3 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
[1654139.645] (II) DUMMY(0): Modeline "640x350"x85.1   31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x384i": 22.4 MHz, 35.5 kHz, 86.6 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x384i"x86.6   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync (35.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x384"x85.0   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync (68.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x384": 39.4 MHz, 60.0 kHz, 75.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x384"x75.0   39.38  512 520 568 656  384 384 386 400 doublescan +hsync +vsync (60.0 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x288": 23.2 MHz, 35.9 kHz, 60.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "512x288": 21.0 MHz, 35.5 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "416x312"x74.7   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (49.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "480x270": 18.6 MHz, 33.3 kHz, 59.8 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "480x270": 20.4 MHz, 33.5 kHz, 59.6 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "400x300"x85.3   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync (53.7 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "400x300"x75.1   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync (46.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "400x300"x72.2   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync (48.1 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "432x243": 16.2 MHz, 30.3 kHz, 59.9 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "432x243": 15.2 MHz, 29.8 kHz, 59.6 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "320x240"x85.2   18.00  320 348 376 416  240 240 242 254 doublescan -hsync -vsync (43.3 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "320x240"x75.0   15.75  320 328 360 420  240 240 242 250 doublescan -hsync -vsync (37.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "320x240"x72.8   15.75  320 332 352 416  240 244 246 260 doublescan -hsync -vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "360x202": 11.2 MHz, 25.1 kHz, 59.5 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "360x200"x85.0   17.75  360 378 414 468  200 200 202 223 doublescan -hsync +vsync (37.9 kHz d)
[1654139.645] (**) DUMMY(0):  Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
[1654139.645] (II) DUMMY(0): Modeline "320x175"x85.3   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[1654139.645] (==) DUMMY(0): DPI set to (96, 96)
[1654139.645] (II) Loading sub module "fb"
[1654139.645] (II) LoadModule: "fb"
[1654139.645] (II) Loading /usr/lib/xorg/modules/libfb.so
[1654139.645] (II) Module fb: vendor="X.Org Foundation"
[1654139.645] 	compiled for 1.20.13, module version = 1.0.0
[1654139.645] 	ABI class: X.Org ANSI C Emulation, version 0.4
[1654139.645] (II) Loading sub module "ramdac"
[1654139.645] (II) LoadModule: "ramdac"
[1654139.645] (II) Module "ramdac" already built-in
[1654139.645] (II) DUMMY(0): Using 37680 scanlines of offscreen memory 
[1654139.645] (==) DUMMY(0): Backing store enabled
[1654139.646] (==) DUMMY(0): Silken mouse enabled
[1654139.646] (WW) DUMMY(0): Option "ConstantDPI" is not used
[1654139.646] (II) Initializing extension Generic Event Extension
[1654139.646] (II) Initializing extension SHAPE
[1654139.646] (II) Initializing extension MIT-SHM
[1654139.646] (II) Initializing extension XInputExtension
[1654139.646] (II) Initializing extension XTEST
[1654139.646] (II) Initializing extension BIG-REQUESTS
[1654139.646] (II) Initializing extension SYNC
[1654139.646] (II) Initializing extension XKEYBOARD
[1654139.646] (II) Initializing extension XC-MISC
[1654139.647] (II) Initializing extension SECURITY
[1654139.647] (II) Initializing extension XFIXES
[1654139.647] (II) Initializing extension RENDER
[1654139.647] (II) Initializing extension RANDR
[1654139.647] (II) Initializing extension COMPOSITE
[1654139.647] (II) Initializing extension DAMAGE
[1654139.647] (II) Initializing extension MIT-SCREEN-SAVER
[1654139.647] (II) Initializing extension DOUBLE-BUFFER
[1654139.647] (II) Initializing extension RECORD
[1654139.647] (II) Initializing extension DPMS
[1654139.647] (II) Initializing extension Present
[1654139.648] (II) Initializing extension DRI3
[1654139.648] (II) Initializing extension X-Resource
[1654139.648] (II) Initializing extension XVideo
[1654139.648] (II) Initializing extension XVideo-MotionCompensation
[1654139.648] (II) Initializing extension SELinux
[1654139.648] (II) SELinux: Disabled on system
[1654139.648] (II) Initializing extension GLX
[1654139.648] (II) AIGLX: Screen 0 is not DRI2 capable
[1654139.671] (II) IGLX: Loaded and initialized swrast
[1654139.671] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[1654139.671] (II) Initializing extension XFree86-VidModeExtension
[1654139.671] (II) Initializing extension XFree86-DGA
[1654139.671] (II) Initializing extension XFree86-DRI
[1654139.671] (II) Initializing extension DRI2
[1654139.701] (II) LoadModule: "mouse"
[1654139.701] (WW) Warning, couldn't open module mouse
[1654139.701] (EE) Failed to load module "mouse" (module does not exist, 0)
[1654139.701] (EE) No input driver matching `mouse'
[1654139.701] (II) Falling back to input driver `libinput'
[1654139.701] (II) LoadModule: "libinput"
[1654139.702] (WW) Warning, couldn't open module libinput
[1654139.702] (EE) Failed to load module "libinput" (module does not exist, 0)
[1654139.702] (II) LoadModule: "kbd"
[1654139.702] (WW) Warning, couldn't open module kbd
[1654139.702] (EE) Failed to load module "kbd" (module does not exist, 0)
[1654139.702] (EE) No input driver matching `kbd'
[1654139.702] (II) Falling back to input driver `libinput'
[1654139.702] (II) LoadModule: "libinput"
[1654139.702] (WW) Warning, couldn't open module libinput
[1654139.702] (EE) Failed to load module "libinput" (module does not exist, 0)
[1654139.716] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[1654139.716] (II) AutoAddDevices is off - not adding device.

ffmpeg log :

2022-04-12 19:24:38.641 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: ffmpeg version 4.2.4-1ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers
2022-04-12 19:24:38.642 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   built with gcc 9 (Ubuntu 9.3.0-10ubuntu2)
2022-04-12 19:24:38.714 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   configuration: --prefix=/usr --extra-version=1ubuntu0.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-nvenc --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
2022-04-12 19:24:38.714 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavutil      56. 31.100 / 56. 31.100
2022-04-12 19:24:38.715 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavcodec     58. 54.100 / 58. 54.100
2022-04-12 19:24:38.715 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavformat    58. 29.100 / 58. 29.100
2022-04-12 19:24:38.715 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavdevice    58.  8.100 / 58.  8.100
2022-04-12 19:24:38.715 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavfilter     7. 57.100 /  7. 57.100
2022-04-12 19:24:38.715 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libavresample   4.  0.  0 /  4.  0.  0
2022-04-12 19:24:38.716 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libswscale      5.  5.100 /  5.  5.100
2022-04-12 19:24:38.716 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libswresample   3.  5.100 /  3.  5.100
2022-04-12 19:24:38.716 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   libpostproc    55.  5.100 / 55.  5.100
2022-04-12 19:24:38.716 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [x11grab @ 0x55d1b2824e40] Stream #0: not enough frames to estimate rate; consider increasing probesize
2022-04-12 19:24:38.717 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Input #0, x11grab, from ':0.0+0,0':
2022-04-12 19:24:38.717 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   Duration: N/A, start: 1649791478.668097, bitrate: N/A
2022-04-12 19:24:38.717 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Stream #0:0: Video: rawvideo (BGR[0] / 0x524742), bgr0, 1280x720, 30 fps, 1000k tbr, 1000k tbn, 1000k tbc
2022-04-12 19:24:38.735 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Guessed Channel Layout for Input Stream #1.0 : stereo
2022-04-12 19:24:38.735 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Input #1, alsa, from 'plug:bsnoop':
2022-04-12 19:24:38.735 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   Duration: N/A, start: 1649791478.331312, bitrate: 1536 kb/s
2022-04-12 19:24:38.735 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Stream #1:0: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s
2022-04-12 19:24:38.736 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Stream mapping:
2022-04-12 19:24:38.736 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264))
2022-04-12 19:24:38.736 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   Stream #1:0 -> #0:1 (pcm_s16le (native) -> aac (native))
2022-04-12 19:24:38.737 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Press [q] to stop, [?] for help
2022-04-12 19:24:38.737 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
2022-04-12 19:24:38.737 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] profile Main, level 3.1
2022-04-12 19:24:39.737 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] 264 - core 155 r2917 0a84d98 - H.264/MPEG-4 AVC codec - Copyleft 2003-2018 - http://www.videolan.org/x264.html - options: cabac=1 ref=1 deblock=1:0:0 analyse=0x1:0x111 me=hex subme=2 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=11 lookahead_threads=11 sliced_threads=1 slices=11 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=1 keyint=60 keyint_min=6 scenecut=40 intra_refresh=0 rc=crf mbtree=0 crf=25.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
2022-04-12 19:24:39.738 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Output #0, mp4, to '/srv/recordings/nwcxnbinyrbmevnf/wagvx09245_2022-04-12-19-24-35.mp4':
2022-04-12 19:24:39.738 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:   Metadata:
2022-04-12 19:24:39.739 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     encoder         : Lavf58.29.100
2022-04-12 19:24:39.739 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Stream #0:0: Video: h264 (libx264) (avc1 / 0x31637661), yuv420p(progressive), 1280x720, q=-1--1, 30 fps, 15360 tbn, 30 tbc
2022-04-12 19:24:39.739 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Metadata:
2022-04-12 19:24:39.739 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:       encoder         : Lavc58.54.100 libx264
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Side data:
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:       cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: -1
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Stream #0:1: Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 128 kb/s
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:     Metadata:
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42:       encoder         : Lavc58.54.100 aac
2022-04-12 19:24:39.740 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   14 fps=0.0 q=17.0 size=       0kB time=00:00:00.44 bitrate=   0.9kbits/s speed=0.879x    
2022-04-12 19:24:39.741 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   29 fps= 29 q=17.0 size=       0kB time=00:00:00.95 bitrate=   0.4kbits/s speed=0.944x    
2022-04-12 19:24:40.741 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   44 fps= 29 q=17.0 size=       0kB time=00:00:01.43 bitrate=   0.3kbits/s speed=0.953x    
2022-04-12 19:24:40.741 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   59 fps= 29 q=17.0 size=       0kB time=00:00:01.95 bitrate=   0.2kbits/s speed=0.97x    
2022-04-12 19:24:41.742 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   75 fps= 30 q=17.0 size=     256kB time=00:00:02.46 bitrate= 850.3kbits/s speed=0.981x    
2022-04-12 19:24:41.742 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=   89 fps= 29 q=17.0 size=     256kB time=00:00:02.97 bitrate= 705.7kbits/s speed=0.983x    
2022-04-12 19:24:42.743 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  105 fps= 30 q=17.0 size=     256kB time=00:00:03.46 bitrate= 605.0kbits/s speed=0.983x    
2022-04-12 19:24:42.743 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  119 fps= 30 q=17.0 size=     256kB time=00:00:03.97 bitrate= 528.3kbits/s speed=0.985x    
2022-04-12 19:24:43.743 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  135 fps= 30 q=17.0 size=     256kB time=00:00:04.48 bitrate= 468.0kbits/s speed=0.989x    
2022-04-12 19:24:44.744 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  150 fps= 30 q=17.0 size=     256kB time=00:00:04.96 bitrate= 422.1kbits/s speed=0.987x    
2022-04-12 19:24:44.744 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  165 fps= 30 q=17.0 size=     512kB time=00:00:05.47 bitrate= 765.5kbits/s speed=0.99x    
2022-04-12 19:24:45.745 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  180 fps= 30 q=17.0 size=     512kB time=00:00:05.99 bitrate= 700.2kbits/s speed=0.991x    
2022-04-12 19:24:45.745 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  195 fps= 30 q=17.0 size=     512kB time=00:00:06.50 bitrate= 645.2kbits/s speed=0.992x    
2022-04-12 19:24:46.746 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  210 fps= 30 q=17.0 size=     512kB time=00:00:06.98 bitrate= 600.2kbits/s speed=0.991x    
2022-04-12 19:24:46.746 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  226 fps= 30 q=17.0 size=     512kB time=00:00:07.50 bitrate= 559.3kbits/s speed=0.992x    
2022-04-12 19:24:47.748 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  240 fps= 30 q=17.0 size=     512kB time=00:00:08.01 bitrate= 523.6kbits/s speed=0.993x    
2022-04-12 19:24:47.749 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  256 fps= 30 q=17.0 size=     768kB time=00:00:08.50 bitrate= 740.2kbits/s speed=0.991x    
2022-04-12 19:24:48.749 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  271 fps= 30 q=17.0 size=     768kB time=00:00:09.03 bitrate= 696.6kbits/s speed=0.994x    
2022-04-12 19:24:48.749 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  286 fps= 30 q=17.0 size=     768kB time=00:00:09.52 bitrate= 660.9kbits/s speed=0.993x    
2022-04-12 19:24:49.679 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  302 fps= 30 q=27.0 size=     768kB time=00:00:10.03 bitrate= 627.1kbits/s speed=0.994x    
2022-04-12 19:24:49.679 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  316 fps= 30 q=17.0 size=     768kB time=00:00:10.54 bitrate= 596.8kbits/s speed=0.995x    
2022-04-12 19:24:49.679 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: frame=  328 fps= 30 q=17.0 Lsize=    1044kB time=00:00:10.93 bitrate= 782.0kbits/s speed=0.998x    
2022-04-12 19:24:49.680 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: video:857kB audio:173kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 1.318124%
2022-04-12 19:24:49.680 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] frame I:6     Avg QP:12.35  size:119723
2022-04-12 19:24:49.680 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] frame P:322   Avg QP:11.83  size:   493
2022-04-12 19:24:49.680 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] mb I  I16..4: 21.6%  0.0% 78.4%
2022-04-12 19:24:49.680 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] mb P  I16..4:  0.0%  0.0%  0.0%  P16..4:  1.6%  0.1%  0.0%  0.0%  0.0%    skip:98.2%
2022-04-12 19:24:49.681 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] coded y,uvDC,uvAC intra: 82.3% 80.1% 72.8% inter: 0.3% 0.8% 0.1%
2022-04-12 19:24:49.681 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] i16 v,h,dc,p: 25% 34% 29% 12%
2022-04-12 19:24:49.681 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 21% 22% 16%  7%  9%  6%  7%  5%  7%
2022-04-12 19:24:49.681 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] i8c dc,h,v,p: 64% 16% 15%  5%
2022-04-12 19:24:49.685 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] Weighted P-Frames: Y:0.0% UV:0.0%
2022-04-12 19:24:49.685 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [libx264 @ 0x55d1b285bb80] kb/s:641.67
2022-04-12 19:24:49.687 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: [aac @ 0x55d1b285cf00] Qavg: 4859.406
2022-04-12 19:24:49.687 INFO: [85] LoggingUtils$Companion$OutputLogger$1$1.call#42: Exiting normally, received signal 2.

jibri log :

2022-04-12 19:24:03.025 INFO: [1] MainKt.handleCommandLineArgs#186: Jibri run with args [--config, /etc/jitsi/jibri/config.json]

2022-04-12 19:24:03.094 INFO: [1] MainKt.setupLegacyConfig#211: Checking legacy config file /etc/jitsi/jibri/config.json

2022-04-12 19:24:03.094 INFO: [1] MainKt.setupLegacyConfig#214: Legacy config file /etc/jitsi/jibri/config.json doesn't exist

2022-04-12 19:24:03.339 INFO: [1] MainKt.main#55: Jibri starting up with id

2022-04-12 19:24:03.714 INFO: [1] JwtInfo$Companion.fromConfig#154: got jwtConfig: {}

2022-04-12 19:24:03.715 INFO: [1] JwtInfo$Companion.fromConfig#164: Unable to create JwtInfo: com.typesafe.config.ConfigException$Missing: /etc/jitsi/jibri/jibri.conf: 93: No configuration setting found for key 'signing-key-path'

2022-04-12 19:24:03.927 INFO: [1] MainKt.main#125: Using port 3333 for internal HTTP API

2022-04-12 19:24:03.944 FINE: [29] WebhookClient$updateStatus$1.invokeSuspend#107: Updating 0 subscribers of status

2022-04-12 19:24:04.223 INFO: [1] XmppApi.updatePresence#203: Jibri reports its status is now JibriStatus(busyStatus=IDLE, health=OverallHealth(healthStatus=HEALTHY, details={})), publishing presence to connections

2022-04-12 19:24:04.230 INFO: [1] XmppApi.start#156: Connecting to xmpp environment on meet.test.dev with config XmppEnvironmentConfig(name=prod environment, xmppServerHosts=[meet.test.dev], xmppDomain=meet.test.dev, baseUrl=null, controlLogin=XmppCredentials(domain=auth.meet.test.dev, port=null, username=jibri, password=*****), controlMuc=XmppMuc(domain=internal.auth.meet.test.dev, roomName=JibriBrewery, nickname=jibri-nickname), sipControlMuc=null, callLogin=XmppCredentials(domain=sfu-recorder.test.com, port=null, username=recorder, password=*****), stripFromRoomDomain=conference., usageTimeoutMins=0, trustAllXmppCerts=true, securityMode=null)

2022-04-12 19:24:04.231 INFO: [1] XmppApi.start#168: The trustAllXmppCerts config is enabled for this domain, all XMPP server provided certificates will be accepted

2022-04-12 19:24:04.252 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient.initializeConnectAndJoin#278: Initializing a new MucClient for [ org.jitsi.xmpp.mucclient.MucClientConfiguration id=meet.test.dev domain=auth.meet.test.dev hostname=meet.test.dev port=null username=jibri mucs=[jibribrewery@internal.auth.meet.test.dev] mucNickname=jibri-nickname disableCertificateVerification=true]

2022-04-12 19:24:04.252 INFO: [1] MainKt.main#152: Using port 2222 for HTTP API

2022-04-12 19:24:04.277 WARNING: [48] MucClient.createXMPPTCPConnectionConfiguration#116: Disabling certificate verification!

2022-04-12 19:24:04.302 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient.initializeConnectAndJoin#340: Dispatching a thread to connect and login.

2022-04-12 19:24:04.476 FINE: [48] JibriStatsDClient.incrementCounter#38: Incrementing statsd counter: xmpp-connected:xmpp_server_host:meet.test.dev

2022-04-12 19:24:04.476 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient$2.connected#311: Connected.

2022-04-12 19:24:04.477 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient.lambda$getConnectAndLoginCallable$7#636: Logging in.

2022-04-12 19:24:04.547 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient$2.authenticated#317: Authenticated, b=false

2022-04-12 19:24:04.571 INFO: [48] [hostname=meet.test.dev id=meet.test.dev] MucClient$MucWrapper.join#760: Joined MUC: jibribrewery@internal.auth.meet.test.dev

2022-04-12 19:24:34.897 INFO: [66] XmppApi.handleJibriIq#230: Received JibriIq <iq xmlns='jabber:client' to='jibri@auth.meet.test.dev/0cd_O-0E' from='jibribrewery@internal.auth.meet.test.dev/focus' id='amlicmlAYXV0aC5tZWV0LnJpbmdvdmVyLmRldi8wY2RfTy0wRQBUSlpRNC03MQAl1HgihSg1aJAXxwdzfXLV' type='set'><jibri xmlns='http://jitsi.org/protocol/jibri' action='start' recording_mode='file' room='wagvx09245@conference.meet.test.dev' session_id='nwcxnbinyrbmevnf' app_data='{"file_recording_metadata":{"share":true}}'/></iq> from environment [MucClient id=meet.test.dev hostname=meet.test.dev]

2022-04-12 19:24:34.899 INFO: [66] XmppApi.handleStartJibriIq#262: Received start request, starting service

2022-04-12 19:24:34.998 INFO: [66] XmppApi.handleStartService#373: Parsed call url info: CallUrlInfo(baseUrl=https://meet.test.dev, callName=wagvx09245, urlParams=[])

2022-04-12 19:24:34.999 INFO: [66] JibriManager.startFileRecording#138: Starting a file recording with params: FileRecordingRequestParams(callParams=CallParams(callUrlInfo=CallUrlInfo(baseUrl=https://meet.test.dev, callName=wagvx09245, urlParams=[]), email='', passcode=null, callStatsUsernameOverride=, displayName=), sessionId=nwcxnbinyrbmevnf, callLoginParams=XmppCredentials(domain=sfu-recorder.test.com, port=null, username=recorder, password=*****))

2022-04-12 19:24:35.022 FINE: [66] [session_id=nwcxnbinyrbmevnf] FfmpegCapturer.<init>#88: Detected os as OS: LINUX

2022-04-12 19:24:35.567 INFO: [66] org.openqa.selenium.remote.ProtocolHandshake.createSession: Detected dialect: OSS

2022-04-12 19:24:35.586 INFO: [66] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService.<init>#134: Writing recording to /srv/recordings/nwcxnbinyrbmevnf, finalize script path /etc/jitsi/jibri/finalize_recording.sh

2022-04-12 19:24:35.594 FINE: [66] JibriStatsDClient.incrementCounter#38: Incrementing statsd counter: start:recording

2022-04-12 19:24:35.594 INFO: [66] JibriStatusManager$$special$$inlined$observable$1.afterChange#72: Busy status has changed: IDLE -> BUSY

2022-04-12 19:24:35.595 FINE: [66] WebhookClient$updateStatus$1.invokeSuspend#107: Updating 0 subscribers of status

2022-04-12 19:24:35.595 INFO: [66] XmppApi.updatePresence#203: Jibri reports its status is now JibriStatus(busyStatus=BUSY, health=OverallHealth(healthStatus=HEALTHY, details={})), publishing presence to connections

2022-04-12 19:24:35.597 INFO: [66] XmppApi.handleStartJibriIq#275: Sending 'pending' response to start IQ

2022-04-12 19:24:35.603 INFO: [81] AbstractPageObject.visit#32: Visiting url https://meet.test.dev

2022-04-12 19:24:36.721 INFO: [81] AbstractPageObject.visit#38: Waited 1.11s for driver to load page

2022-04-12 19:24:36.773 INFO: [81] AbstractPageObject.visit#32: Visiting url https://meet.test.dev/wagvx09245#config.iAmRecorder=true&config.externalConnectUrl=null&config.startWithAudioMuted=true&config.startWithVideoMuted=true&interfaceConfig.APP_NAME="Jibri"&config.analytics.disabled=true&config.p2p.enabled=false&config.prejoinPageEnabled=false&config.prejoinConfig.enabled=false&config.requireDisplayName=false

2022-04-12 19:24:37.328 INFO: [81] AbstractPageObject.visit#38: Waited 554ms for driver to load page

2022-04-12 19:24:37.349 FINE: [81] CallPage$visit$$inlined$measureTimedValue$lambda$1.apply#58: Not joined yet: Cannot read properties of undefined (reading 'isJoined')

2022-04-12 19:24:37.863 FINE: [81] CallPage$visit$$inlined$measureTimedValue$lambda$1.apply#58: Not joined yet: Cannot read properties of undefined (reading 'isJoined')

2022-04-12 19:24:38.483 INFO: [81] CallPage.visit#71: Waited 1.15s to join the conference

2022-04-12 19:24:38.487 INFO: [81] [session_id=nwcxnbinyrbmevnf] EmptyCallStatusCheck.<init>#26: Starting empty call check with a timeout of PT2M10S

2022-04-12 19:24:38.512 INFO: [81] [session_id=nwcxnbinyrbmevnf] JibriSelenium.onSeleniumStateChange#215: Transitioning from state Starting up to Running

2022-04-12 19:24:38.513 INFO: [81] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService$start$1.invoke#168: Selenium joined the call, starting the capturer

2022-04-12 19:24:38.557 INFO: [81] [session_id=nwcxnbinyrbmevnf] JibriSubprocess.launch#42: Starting ffmpeg with command ffmpeg -y -v info -f x11grab -draw_mouse 0 -r 30 -s 1280x720 -thread_queue_size 4096 -i :0.0+0,0 -f alsa -thread_queue_size 4096 -i plug:bsnoop -acodec aac -strict -2 -ar 44100 -b:a 128k -af aresample=async=1 -c:v libx264 -preset veryfast -profile:v main -level 3.1 -pix_fmt yuv420p -r 30 -crf 25 -g 60 -tune zerolatency -f mp4 /srv/recordings/nwcxnbinyrbmevnf/wagvx09245_2022-04-12-19-24-35.mp4 ([ffmpeg, -y, -v, info, -f, x11grab, -draw_mouse, 0, -r, 30, -s, 1280x720, -thread_queue_size, 4096, -i, :0.0+0,0, -f, alsa, -thread_queue_size, 4096, -i, plug:bsnoop, -acodec, aac, -strict, -2, -ar, 44100, -b:a, 128k, -af, aresample=async=1, -c:v, libx264, -preset, veryfast, -profile:v, main, -level, 3.1, -pix_fmt, yuv420p, -r, 30, -crf, 25, -g, 60, -tune, zerolatency, -f, mp4, /srv/recordings/nwcxnbinyrbmevnf/wagvx09245_2022-04-12-19-24-35.mp4])

2022-04-12 19:24:39.737 INFO: [84] [session_id=nwcxnbinyrbmevnf] FfmpegCapturer.onFfmpegStateMachineStateChange#130: Ffmpeg capturer transitioning from state Starting up to Running

2022-04-12 19:24:39.739 INFO: [84] [session_id=nwcxnbinyrbmevnf] StatefulJibriService.onServiceStateChange#39: File recording service transitioning from state Starting up to Running

2022-04-12 19:24:39.741 INFO: [84] XmppApi$createServiceStatusHandler$1.invoke#328: Current service started up successfully, sending on iq <iq xmlns='jabber:client' to='jibribrewery@internal.auth.meet.test.dev/focus' id='417R4-8' type='set'><jibri xmlns='http://jitsi.org/protocol/jibri' status='on'/></iq>

2022-04-12 19:24:49.657 INFO: [71] XmppApi.handleJibriIq#230: Received JibriIq <iq xmlns='jabber:client' to='jibri@auth.meet.test.dev/0cd_O-0E' from='jibribrewery@internal.auth.meet.test.dev/focus' id='amlicmlAYXV0aC5tZWV0LnJpbmdvdmVyLmRldi8wY2RfTy0wRQBUSlpRNC05NgAl1HgihSg1aJAXxwdzfXLV' type='set'><jibri xmlns='http://jitsi.org/protocol/jibri' action='stop' session_id='nwcxnbinyrbmevnf'/></iq> from environment [MucClient id=meet.test.dev hostname=meet.test.dev]

2022-04-12 19:24:49.657 FINE: [71] JibriStatsDClient.incrementCounter#38: Incrementing statsd counter: stop:recording

2022-04-12 19:24:49.658 INFO: [71] JibriManager.stopService#260: Stopping the current service

2022-04-12 19:24:49.658 INFO: [71] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService.stop#182: Stopping capturer

2022-04-12 19:24:49.658 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSubprocess.stop#75: Stopping ffmpeg process

2022-04-12 19:24:49.687 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSubprocess.stop#89: ffmpeg exited with value 255

2022-04-12 19:24:49.688 INFO: [84] [session_id=nwcxnbinyrbmevnf] FfmpegCapturer.onFfmpegStateMachineStateChange#130: Ffmpeg capturer transitioning from state Running to Finished

2022-04-12 19:24:49.688 INFO: [71] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService.stop#184: Quitting selenium

2022-04-12 19:24:49.689 INFO: [84] [session_id=nwcxnbinyrbmevnf] StatefulJibriService.onServiceStateChange#39: File recording service transitioning from state Running to Finished

2022-04-12 19:24:49.689 INFO: [84] XmppApi$createServiceStatusHandler$1.invoke#321: Current service finished, sending off iq <iq xmlns='jabber:client' to='jibribrewery@internal.auth.meet.test.dev/focus' id='417R4-11' type='set'><jibri xmlns='http://jitsi.org/protocol/jibri' status='off'/></iq>

2022-04-12 19:24:49.724 INFO: [71] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService.stop#211: Participants in this recording: []

2022-04-12 19:24:49.767 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#336: Leaving call and quitting browser

2022-04-12 19:24:49.767 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#339: Recurring call status checks cancelled

2022-04-12 19:24:49.780 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#345: Got 20 log entries for type browser

2022-04-12 19:24:49.858 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#345: Got 680 log entries for type driver

2022-04-12 19:24:49.934 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#345: Got 0 log entries for type client

2022-04-12 19:24:49.934 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#354: Leaving web call

2022-04-12 19:24:50.052 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#361: Quitting chrome driver

2022-04-12 19:24:50.128 INFO: [71] [session_id=nwcxnbinyrbmevnf] JibriSelenium.leaveCallAndQuitBrowser#363: Chrome driver quit

2022-04-12 19:24:50.128 INFO: [71] [session_id=nwcxnbinyrbmevnf] FileRecordingJibriService.stop#232: Finalizing the recording

2022-04-12 19:24:50.128 INFO: [71] JibriServiceFinalizeCommandRunner.doFinalize#44: Finalizing the jibri service operation using command [/etc/jitsi/jibri/finalize_recording.sh, /srv/recordings/nwcxnbinyrbmevnf]

2022-04-12 19:24:50.133 INFO: [71] JibriServiceFinalizeCommandRunner.doFinalize#60: Finalize script finished with exit value 0

2022-04-12 19:24:50.135 INFO: [71] JibriStatusManager$$special$$inlined$observable$1.afterChange#72: Busy status has changed: BUSY -> IDLE

2022-04-12 19:24:50.135 FINE: [71] WebhookClient$updateStatus$1.invokeSuspend#107: Updating 0 subscribers of status

2022-04-12 19:24:50.136 INFO: [71] XmppApi.updatePresence#203: Jibri reports its status is now JibriStatus(busyStatus=IDLE, health=OverallHealth(healthStatus=HEALTHY, details={})), publishing presence to connections

2022-04-12 19:24:50.136 INFO: [84] JibriManager.stopService#256: No service active, ignoring stop

2022-04-12 19:25:03.923 FINE: [29] WebhookClient$updateStatus$1.invokeSuspend#107: Updating 0 subscribers of status

for jitsi version

ii  jitsi-meet                        2.0.6726-1                   all          WebRTC JavaScript video conferences
ii  jitsi-meet-prosody                1.0.5675-1                   all          Prosody configuration for Jitsi Meet
ii  jitsi-meet-turnserver             1.0.5675-1                   all          Configures coturn to be used with Jitsi Meet
ii  jitsi-meet-web                    1.0.5675-1                   all          WebRTC JavaScript video conferences
ii  jitsi-meet-web-config             1.0.5675-1                   all          Configuration for web serving of Jitsi Meet
ii  jitsi-videobridge2                2.1-595-g3637fda4-1          all          WebRTC compatible Selective Forwarding Unit (SFU)

for jibri version

ii jibri 8.0-121-g27323fe-1 all Jibri

What are the specs of your server?

Also, your Jitsi deployment is waaaaay behind the Jibri version you’re using. You might want to consider updating both to the latest stable versions. You also want to pay attention to your config files as it looks like you’re using some really, really old configurations.

cat /proc/cpuinfo

processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.201
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 0
cpu cores	: 8
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.920
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 0
cpu cores	: 8
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.633
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 1
cpu cores	: 8
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.679
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 1
cpu cores	: 8
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.636
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 2
cpu cores	: 8
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.505
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 2
cpu cores	: 8
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.110
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 3
cpu cores	: 8
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.217
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 3
cpu cores	: 8
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 8
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.579
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 4
cpu cores	: 8
apicid		: 8
initial apicid	: 8
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 9
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.892
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 4
cpu cores	: 8
apicid		: 24
initial apicid	: 24
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 10
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.015
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 5
cpu cores	: 8
apicid		: 10
initial apicid	: 10
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 11
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.210
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 5
cpu cores	: 8
apicid		: 26
initial apicid	: 26
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 12
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.443
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 6
cpu cores	: 8
apicid		: 12
initial apicid	: 12
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 13
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.267
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 6
cpu cores	: 8
apicid		: 28
initial apicid	: 28
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 14
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1201.032
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 7
cpu cores	: 8
apicid		: 14
initial apicid	: 14
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 15
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.209
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 7
cpu cores	: 8
apicid		: 30
initial apicid	: 30
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 16
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.049
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 0
cpu cores	: 8
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 17
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.732
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 0
cpu cores	: 8
apicid		: 17
initial apicid	: 17
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 18
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.789
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 1
cpu cores	: 8
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 19
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.713
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 1
cpu cores	: 8
apicid		: 19
initial apicid	: 19
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 20
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.763
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 2
cpu cores	: 8
apicid		: 5
initial apicid	: 5
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 21
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.780
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 2
cpu cores	: 8
apicid		: 21
initial apicid	: 21
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 22
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1201.030
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 3
cpu cores	: 8
apicid		: 7
initial apicid	: 7
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 23
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1205.126
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 3
cpu cores	: 8
apicid		: 23
initial apicid	: 23
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 24
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.023
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 4
cpu cores	: 8
apicid		: 9
initial apicid	: 9
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 25
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1201.051
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 4
cpu cores	: 8
apicid		: 25
initial apicid	: 25
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 26
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1205.420
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 5
cpu cores	: 8
apicid		: 11
initial apicid	: 11
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 27
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1201.319
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 5
cpu cores	: 8
apicid		: 27
initial apicid	: 27
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 28
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1202.988
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 6
cpu cores	: 8
apicid		: 13
initial apicid	: 13
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 29
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1203.595
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 6
cpu cores	: 8
apicid		: 29
initial apicid	: 29
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 30
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1200.815
cache size	: 20480 KB
physical id	: 0
siblings	: 16
core id		: 7
cpu cores	: 8
apicid		: 15
initial apicid	: 15
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5199.92
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

processor	: 31
vendor_id	: GenuineIntel
cpu family	: 6
model		: 63
model name	: Intel(R) Xeon(R) CPU E5-2640 v3 @ 2.60GHz
stepping	: 2
microcode	: 0x46
cpu MHz		: 1203.362
cache size	: 20480 KB
physical id	: 1
siblings	: 16
core id		: 7
cpu cores	: 8
apicid		: 31
initial apicid	: 31
fpu		: yes
fpu_exception	: yes
cpuid level	: 15
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit
bogomips	: 5201.30
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:

Just tell me how many CPUs/RAM

@Freddie sorry i dont know how i can find this info can you help me please

Oh, sure. Run these commands:

lscpu

or

htop

With htop, you can just take a screenshot of the result and share. It will show both CPU and RAM

thank you @Freddie

That’s weird. That’s a very powerful machine, but your ffmpeg log shows a low encoding rate. Are you using VMs or something?

In any event, again, I think you’ll benefit from upgrading your Jitsi to the latest version, like Jibri. Version mismatch can sometimes cause problems. Did you just install Jitsi? If so and you’re not running any other thing on the Jitsi server, I strongly recommend purging it completely and starting the installation from scratch. That way, you get rid of bad residual config files.