/etc/xpra/conf.d/30_picture.conf is in xpra 2.1.3+dfsg-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | ################################################################################
# Picture Encoding
# Encodings allowed:
# (not all encodings may be available in your environment):
#encodings = h264, vp8, png, png/P, png/L, rgb, jpeg, h265, vp9
#encodings = all
#encodings = rgb
encodings = all
# Default encoding
# (not all encodings may be available in your environment):
#encoding = h264
#encoding = vp8
#encoding = png
#encoding = jpeg
#encoding = rgb
# Used by the server to encode video:
# video-encoders = x264, vpx, nvenc
# video-encoders = none
# video-encoders = all
video-encoders = all
# Used by both the client and server for colourspace conversion:
# csc-modules = swscale, libyuv
# csc-modules = none
# csc-modules = all
csc-modules = all
# Used by the client for decoding:
# video-decoders = avcodec2, vpx
# video-decoders = avcodec, vpx
# video-decoders = none
# video-decoders = all
video-decoders = all
# Automatic video downscaling:
# video-scaling = 0 #same as off
# video-scaling = off
# video-scaling = on
# video-scaling = 10 #mild automatic downscaling
# video-scaling = 100 #very aggressive downscaling
video-scaling = on
# Use fixed quality
# (value is a percentage or "auto"):
#quality = 80
quality = auto
# For auto quality only:
#min-quality = 50
min-quality = 30
# Use fixed speed
# (value is a percentage or "auto"):
#speed = 90
speed = auto
# For auto speed only:
#min-speed = 0
min-speed = 30
# Idle delay in seconds before doing an automatic lossless refresh:
auto-refresh-delay = 0.15
# Use a fixed DPI:
#dpi = 96
#automatic (which is the default):
#dpi = 0
# Bit depth of the virtual display or client display:
# (this will be added to the xvfb command line above as "-depth VALUE")
# for automatic mode, use the value 0:
#pixel-depth = 0
#pixel-depth = 16
#pixel-depth = 24
#pixel-depth = 30
pixel-depth = 0
# Video encoders loaded by the server
# (all of them unless specified)
# examples:
#video-encoders=x264,vpx,nvenc
#video-encoders=x264
# Colourspace conversion modules loaded by the server
# (all of them unless specified)
# examples:
#csc-modules=swscale,cython,opencl
#csc-modules=swscale
|