Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. # Configuration options for FreshPlayerPlugin
  2.  
  3. # This configuration file is optional. Wrapper will search for it first
  4. # in ~/.config/freshwrapper.conf, then in /etc/freshwrapper.conf.
  5. # If wrapper fails to find configuration, it will use default values,
  6. # which you can find below
  7.  
  8. # Audio buffer is used to continuously provide sound adapter with data.
  9. # Values too low may lead to buffer underruns and stuttering. Values
  10. # too high will lead to noticeable latency. Usually plugin selects size
  11. # on its own, but you may override bounds here
  12.  
  13. # lower bound for audio buffer size, in milliseconds
  14. audio_buffer_min_ms = 20
  15.  
  16. # higher bound of audio buffer size, in milliseconds
  17. audio_buffer_max_ms = 500
  18.  
  19. # output sound through JACK. If enabled, only JACK will be tried, and if
  20. # your machine doesn't have it, there would be no sound, and no sync
  21. audio_use_jack = 0
  22.  
  23. # Path to the Pepper Flash plugin.
  24. # If the option is absent, freshwrapper will search for Pepper Flash in
  25. # a number of location where it could be. Usually that's enough, but if
  26. # not, you should manually enter the right path. Multiple paths could
  27. # be specified, separated by colon.
  28. pepperflash_path = "/usr/lib/pepperflashplugin-nonfree/libpepflashplayer.so"
  29.  
  30. # "Command-line" arguments for Flash
  31. flash_command_line = "enable_hw_video_decode=1,enable_stagevideo_auto=1"
  32.  
  33. # enable 3d and stage 3d
  34. enable_3d = 1
  35.  
  36. # enable hardware-accelerated video decoding. Requires 3d to really work
  37. enable_hwdec = 1
  38.  
  39. # when set to 1, limits output to warnings and errors only
  40. quiet = 1
  41.  
  42. # When multiple monitors with different resolutions are used, size
  43. # of fullscreen window can vary. But some Flash movies request these
  44. # parameters once at startup and rely on them to be correct. By default,
  45. # if zeros are used here, freshwrapper will select minimal width and
  46. # height across all monitors.
  47. fullscreen_width = 0
  48. fullscreen_height = 0
  49.  
  50. # Enables DNS query case randomization to partially protect against DNS
  51. # poisoning attacks. It was reported that some Mikrotik routers do not
  52. # support this trick. Set parameter to 0 if you have an affected model
  53. randomize_dns_case = 0
  54.  
  55. # scaling factor (floating point value) used to convert screen pixels
  56. # to device independent pixels. You may need it for displays with
  57. # high DPI
  58. device_scale = 1
  59.  
  60. # method org.freedesktop.ScreenSaver.SimulateUserActivity() in KDE 5 seems
  61. # to have no effect unless GetSessionIdleTime() called afterwards. Set
  62. # parameter to 1 to call latter
  63. quirk_plasma5_screensaver = 0
  64.  
  65. # whenever to use windowed plugin mode
  66. enable_windowed_mode = 1
  67.  
  68. # whenever XEmbed used in windowed mode (if browser advertises its support)
  69. enable_xembed = 1
  70.  
  71. # if set to 1, fullscreen window will be kept always above browser, and hidden
  72. # from taskbar and pager
  73. tie_fullscreen_window_to_browser = 1
  74.  
  75. # enable using of VA-API for hardware accelerated video decoding
  76. enable_vaapi = 1
  77.  
  78. # enable using of VDPAU for hardware accelerated video decoding
  79. enable_vdpau = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement