Advertisement
Guest User

Untitled

a guest
Jun 1st, 2016
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.53 KB | None | 0 0
  1. # ============================================================================
  2. # Configuration file for UMS
  3. # ============================================================================
  4. # Introduction:
  5. #
  6. # This "UMS.conf" file holds the configuration settings for UMS. These
  7. # settings are usually set using the UMS graphical user interface. If you are
  8. # running UMS on a headless system, you may not be able to kick off the GUI;
  9. # instead, you can edit the UMS.conf file to control the operation of UMS. A
  10. # restart of UMS is required after editing this file.
  11. #
  12. # Commenting out an option or leaving it empty forces the UMS default
  13. # that is indicated.
  14. #
  15. # Key value pairs
  16. # ---------------
  17. # The configuration file contains key/value pairs separated by an equals (=)
  18. # sign; the key on the left and the value on the right. The value is edited in
  19. # this file or set using the UMS GUI and saved. The value can take a number of
  20. # different forms:
  21. #
  22. # - toggle: a checkbox or boolean; either "true" or "false"
  23. # - selector: a dropdown menu in the GUI, generating a string or numeric
  24. # value. Available options will usually be stated below
  25. # - string: a short text or a number
  26. # - text: a longer text with embedded line breaks
  27. # - list: a comma-separated list of strings or numbers
  28. #
  29. # In the file below the value type is shown after the Default label; strings
  30. # have quotation marks, toggles are true or false, the others are explained.
  31. #
  32. # ----------------------------------------------------------------------------
  33. # General Configuration Tab
  34. # ----------------------------------------------------------------------------
  35. # ---< General Settings >-----------------------------------------------------
  36.  
  37. # Server name
  38. # -----------
  39. # The server name is displayed in the renderer before the profile name.
  40. # Default: "Universal Media Server"
  41. server_name =
  42.  
  43. # Append profile name
  44. # -------------------
  45. # Whether the profile name should be appended to the server name when
  46. # displayed on the renderer.
  47. # Default: false
  48. append_profile_name =
  49.  
  50. # Language
  51. # --------
  52. # The language to use for the GUI and other dialogues.
  53. # The following translations are available:
  54. # af = Afrikaans
  55. # ar = Arabic
  56. # pt-BR = Brazilian Portuguese
  57. # bg = Bulgarian
  58. # ca = Catalan
  59. # zh-Hans = Chinese (Simplified)
  60. # zh-Hant = Chinese (Traditional)
  61. # cs = Czech
  62. # da = Danish
  63. # nl = Dutch
  64. # en-US = English (US)
  65. # en-GB = English (UK)
  66. # fi = Finish
  67. # fr = French
  68. # de = German
  69. # el = Greek
  70. # iw = Hebrew
  71. # hu = Hungarian
  72. # is = Icelandic
  73. # it = Italian
  74. # ja = Japanese
  75. # ko = Korean
  76. # no = Norwegian
  77. #...fa = Persian
  78. # pl = Polish
  79. # pt = Portuguese
  80. # ro = Romanian
  81. # ru = Russian
  82. # sr = Serbian (Cyrillic)
  83. # sk = Slovak
  84. # sl = Slovenian
  85. # es = Spanish
  86. # sv = Swedish
  87. # tr = Turkish
  88. # uk = Ukrainian
  89. # vi = Vietnamese
  90.  
  91. # An IETF language tag is used to set the language, see
  92. # http://en.wikipedia.org/wiki/IETF_language_tag
  93. # Default: "", which means UMS will follow the locale.
  94. language =
  95.  
  96. # Start minimized to system tray
  97. # ------------------------------
  98. # Sets whether the GUI should start when the program is launched.
  99. # On headless systems, this should be "true".
  100. # Default: false
  101. minimized = false
  102.  
  103. # Check for updates
  104. # -----------------
  105. # Default: false.
  106. auto_update =
  107.  
  108. # Hide advanced options
  109. # ---------------------
  110. # Default: false.
  111. hide_advanced_options =
  112.  
  113. # Run wizard on startup
  114. # ---------------------
  115. # When true, this offers to run a wizard with the most frequently-changed
  116. # settings to allow users to quickly customize UMS without digging through
  117. # all of our advanced settings
  118. # Default: true until it has run once
  119. run_wizard =
  120.  
  121. # Only run a single instance of UMS
  122. # ---------------------------------
  123. # When true, UMS will allow only one instance by shutting down the first one
  124. # when a second one is launched.
  125. # Note: UMS must be run with administrator rights for this to work.
  126. # Default: true
  127. single_instance =
  128.  
  129. # ---< Network Settings >-----------------------------------------------------
  130. # Generally these settings should not need to be changed from their defaults
  131. # or settings determined automatically by the system. Changing them may make
  132. # your UMS server disappear from your other devices.
  133.  
  134. # Force networking on interface
  135. # -----------------------------
  136. # Specifies the (physical) network interface to attach to, should only be
  137. # relevant when the server has more than one network interface and UMS picks
  138. # the wrong one. The selector displays all available network interfaces.
  139. # E.g. network_interface = eth0
  140. # Default: "", which means UMS will automatically select a network interface.
  141. network_interface =
  142.  
  143. # Force IP of the server
  144. # ----------------------
  145. # A network interface can be have multiple IP addresses associated with it.
  146. # This sets which one should be used.
  147. # Default: "", which means UMS will automatically select an IP address.
  148. hostname =
  149.  
  150. # Force port of the server
  151. # ------------------------
  152. # Sets the port UMS will listen on; usually should not need to be set unless
  153. # another service has already grabbed the port.
  154. # Default: "", which means UMS will automatically use port 5001.
  155. port =
  156.  
  157. # Use an IP filter (whitelist)
  158. # ----------------------------
  159. # Set the IP address(es) and/or IP address range(s) of the clients permitted
  160. # to connect. When no filter is specified, UMS will allow any IP address to
  161. # connect to the service.
  162. # Multiple IP addresses and/or IP address ranges can be separated with a comma
  163. # or semicolon e.g.: 127.0.0.1,192.168.0-1.*
  164. # Default: ""
  165. ip_filter =
  166.  
  167. # Maximum bandwidth in Mb/s
  168. # -------------------------
  169. # Set the maximum bandwidth to be consumed by the server.
  170. # Leaving the setting blank or zero switches off bandwidth throttling.
  171. # Default: 90
  172. maximum_bitrate =
  173.  
  174. # Use automatic maximum bandwidth
  175. # -------------------------------
  176. # When this setting is enabled, we estimate the speed of the connection to the
  177. # renderer and limit the bandwidth accordingly.
  178. # Default: false
  179. automatic_maximum_bitrate =
  180.  
  181. # ---< Advanced HTTP and system settings >------------------------------------
  182.  
  183. # HTTP Engine V2
  184. # --------------
  185. # Default: true
  186. http_engine_v2 =
  187.  
  188. # Prevent Windows from sleeping
  189. # -----------------------------
  190. # If your host server has a power-saving mode, use this option to prevent the
  191. # server from hibernating or sleeping while it is streaming data.
  192. # Default: false
  193. prevents_sleep_mode =
  194.  
  195. # Selected renderers
  196. # ------------------
  197. # A comma-separated list of renderer configurations to load by renderer name as
  198. # defined in the configuration file. Two special values exist, "All renderers"
  199. # and "None". Group names made of the first word in the renderer name can be
  200. # used to specify all renderers in that group, e.g. "Panasonic".
  201. # Example: Yamaha RX-A1010, Panasonic
  202. # Default: "All renderers"
  203. selected_renderers =
  204.  
  205. # Default renderer when automatic detection fails
  206. # -----------------------------------------------
  207. # UMS can recognize many renderers automatically. Sometimes a renderer will
  208. # connect which UMS does not recognize. This option defines which renderer UMS
  209. # should assume.
  210. # Default: "", which means UMS will assume the "Unknown renderer".
  211. renderer_default =
  212.  
  213. # Force default renderer (disable automatic detection)
  214. # ----------------------------------------------------
  215. # By default UMS tries to automatically detect what renderers try to connect
  216. # to it. When this is true, UMS will assume any renderer that connects is the
  217. # default renderer.
  218. # Default: false
  219. renderer_force_default =
  220.  
  221. # ChromeCast Extension
  222. # --------------------
  223. # Whether to load Chromecast extension API or not.
  224. # Default: true
  225. chromecast_extension =
  226.  
  227. # Enable external network
  228. # -----------------------
  229. # Whether to enable functionality that uses external networks like the
  230. # Internet. It should be disabled if the computer has no Internet access.
  231. # Default: true
  232. external_network =
  233.  
  234. # ----------------------------------------------------------------------------
  235. # Navigation/Share Settings Tab
  236. # ----------------------------------------------------------------------------
  237.  
  238. # ---< Thumbnails >-----------------------------------------------------------
  239.  
  240. # Generate thumbnails
  241. # -------------------
  242. # Whether to generate thumbnails of media files.
  243. # Default: true
  244. generate_thumbnails =
  245.  
  246. # Thumbnail seeking position (in seconds)
  247. # ---------------------------------------
  248. # The amount of time (in seconds) to skip in videos before generating
  249. # thumbnails, designed to avoid the usual black screen before videos start.
  250. # Default: "4"
  251. thumbnail_seek_position =
  252.  
  253. # Image thumbnails
  254. # ----------------
  255. # Choose whether or not to show thumbnails of images.
  256. # Default: true
  257. image_thumbnails =
  258.  
  259. # Use MPlayer for video thumbnails
  260. # --------------------------------
  261. # Whether or not to use MPlayer to generate the thumbnails for video; can
  262. # produce better results than built-in method.
  263. # Default: false, which will use the built-in method.
  264. use_mplayer_for_video_thumbs =
  265.  
  266. # DVD ISO thumbnails
  267. # ------------------
  268. # Choose whether or not to show thumbnails of ISO images.
  269. # Default: false
  270. dvd_isos_thumbnails =
  271.  
  272. # Audio thumbnails import
  273. # -----------------------
  274. # Choose how to get thumbnails for audio files (cover art), value is a number
  275. # from the following list (equivalent to GUI dropdown order):
  276. # 0: Alphabetical (A-Z) - search local filesystem
  277. # 1: Download from Cover Art Archive
  278. # Default: 1
  279. audio_thumbnails_method =
  280.  
  281. # Alternate video cover art folder
  282. # --------------------------------
  283. # Specify a folder below which appropriate cover art for videos might be
  284. # located. Providing no value (default) effectively disables video thumbnails.
  285. # The GUI offers a file-system navigator which generates an absolute path.
  286. # Default: ""
  287. alternate_thumb_folder =
  288.  
  289. # ---< File sorting / naming >------------------------------------------------
  290.  
  291. # File order
  292. # ----------
  293. # Determines the order of listed content when a client browses a folder; the
  294. # GUI selector generates a numeric indicator according to the following.
  295. # 0: Alphabetical A-Z
  296. # 1: By date (newest first)
  297. # 2: By reverse date (oldest first)
  298. # 3: ASCIIbetical (i.e. using ASCII code values)
  299. # 4: Alphanumeric (AKA natural sort e.g. "Season 2" before "Season 10")
  300. # 5: Random
  301. # 6: No Sorting
  302. # Default: 4
  303. sort_method =
  304.  
  305. # Ignore the word "the" while sorting
  306. # -----------------------------------
  307. # Controls whether or not to ignore the word "the" while sorting files.
  308. # Default: true
  309. ignore_the_word_the =
  310.  
  311. # Prettify filenames (does not rename the actual files)
  312. # -----------------------------------------------------
  313. # Controls whether or not to automatically rename filenames to be more
  314. # readable by removing superfluous information from them such as release
  315. # group, quality, source, etc.
  316. # Default: false
  317. prettify_filenames =
  318.  
  319. # Use info from IMDb
  320. # ------------------
  321. # This appends episode titles and movie years from IMDb to the file name.
  322. # For example, the file "Show.Name.S01E01.HDTV-GroupName" will show up as
  323. # "Show Name - 101 - Episode Title".
  324. # Default: true if filename prettifying is enabled
  325. use_imdb_info =
  326.  
  327. # ---< Virtual folders >------------------------------------------------------
  328. # Instructs the system on how to find media and various controls on giving
  329. # clients access to transcoding facilities and features.
  330.  
  331. # Hide file extensions
  332. # --------------------
  333. # Choose whether or not to show file extensions when showing file name in
  334. # client listings.
  335. # Default: true
  336. hide_extensions =
  337.  
  338. # Do not add engine names to filenames
  339. # ------------------------------------
  340. # Choose whether or not to show transcoding engine names for video; see also
  341. # "Hide Transcode Folder" setting.
  342. # Default: true
  343. hide_enginenames =
  344.  
  345. # Hide empty folders
  346. # ------------------
  347. # Choose whether or not to show folders which contain no viewable content.
  348. # Switching this on slows down browsing in the client (folders must be checked
  349. # for content first before showing them); using a cache (see below) can help.
  350. # Default: false
  351. hide_empty_folders =
  352.  
  353. # Show iTunes library
  354. # -------------------
  355. # Choose whether or not to show the iTunes library as a folder in UMS.
  356. # Default: false
  357. show_itunes_library =
  358.  
  359. # Show iPhoto library
  360. # -------------------
  361. # Choose whether or not to show the iPhoto library as a folder in UMS.
  362. # Default: false
  363. show_iphoto_library =
  364.  
  365. # Show Aperture library
  366. # ---------------------
  367. # Choose whether or not to show the Aperture library as a folder in UMS.
  368. # Default: false
  369. show_aperture_library =
  370.  
  371. # Enable the cache
  372. # ------------
  373. # Without a cache, when the client browses a folder, content is listed in
  374. # real-time. With a cache, additional information becomes available and the
  375. # cache can be browsed directly.
  376. # Default: true
  377. use_cache =
  378.  
  379. # Hide the "Cache" folder
  380. # -----------------
  381. # Controls whether or not the cache can be browsed directly by the client.
  382. # Default: true
  383. hide_media_library_folder =
  384.  
  385. # Browse compressed archives (zip, rar, etc.)
  386. # -------------------------------------------
  387. # Should the system browse compressed files looking for media? Files are
  388. # extracted only when selected for viewing.
  389. # Supported formats: cbr, cbz, rar and zip.
  390. # Default: false
  391. enable_archive_browsing =
  392.  
  393. # Hide the "Server Settings" folder
  394. # ---------------------------------
  395. # Control visibility of the Video Settings folder on clients; contents of the
  396. # folder allow direct editing of UMS settings for video.
  397. # Default: false
  398. hide_video_settings =
  399.  
  400. # Hide the "Transcode" folder
  401. # ---------------------------
  402. # Control visibility of the Transcode folder on clients; contents of the
  403. # folder provide control over transcoding of video.
  404. # Default: false
  405. hide_transcode_folder =
  406.  
  407. # Hide the "Live Subtitles" folder
  408. # --------------------------------
  409. # Whether to hide the Live Subtitles folder on clients; contents of the folder
  410. # provide access to stream subtitles from the Internet via www.opensubtitles.org
  411. # Default: true
  412. hide_live_subtitles_folder =
  413.  
  414. # Minimum item limit before using A-Z folders
  415. # -------------------------------------------
  416. # Specifies how many items must be in a folder before we create virtual
  417. # subfolders for each letter.
  418. # Default: 10000
  419. atz_limit =
  420.  
  421. # Hide the "New Media" folder
  422. # ---------------------------
  423. # Control visibility of the New Media folder on clients; contents of the
  424. # folder provide access to all un-watched (new) media.
  425. # Default: false
  426. hide_new_media_folder =
  427.  
  428. # Fully played action
  429. # --------------------
  430. # What to do with a file after it has been fully played.
  431. # The following options are available:
  432. #
  433. # 0 = Do nothing
  434. # 1 = Mark media (Add a thumbnail overlay or prefix the media name)
  435. # 2 = Hide video
  436. # 3 = Move file to a different folder
  437. # 4 = Move file to recycle/trash bin. It will not do anything if this isn't
  438. # possible
  439. #
  440. # Default: 1
  441. fully_played_action =
  442.  
  443. # Fully played output directory
  444. # ------------------------------
  445. # The directory to move fully played files to if "Fully played action" is 3.
  446. #
  447. # Default: ""
  448. fully_played_output_directory =
  449.  
  450. # Minimum watched play time
  451. # -------------------------
  452. # The minimum time in milliseconds to wait after playback is started before
  453. # marking a file as watched and before creating a resumable file.
  454. # Default: 30000 (30 seconds)
  455. minimum_watched_play_time =
  456.  
  457. # Enable video resuming
  458. # ---------------------
  459. # Whether videos should be resumable by playing their "Resume:" files.
  460. # Default: true
  461. resume =
  462.  
  463. # Hide the "Recently Played" folder
  464. # ---------------------------------
  465. # Control visibility of the Recently Played folder on clients; contents of the
  466. # folder provide access to the most recently played media.
  467. # Default: false
  468. hide_recently_played_folder =
  469.  
  470. # ---< Shared folders >-------------------------------------------------------
  471.  
  472. # Shared folders
  473. # --------------
  474. # Either define a list of specific folders containing media to be shared or
  475. # allow the system to browse the whole disk of the server. The GUI provides a
  476. # system navigation to generate a list of folders. The list should contain a
  477. # comma-separated list of absolute path names, or leave it empty to let the
  478. # system find media.
  479. # Default: ""
  480. folders =
  481.  
  482. # Include in New Media folder
  483. # ---------------------------
  484. # List of folders to be monitored for the addition of their contents to the
  485. # New Media folder.
  486. # Default: ""
  487. folders_monitored =
  488.  
  489. # ----------------------------------------------------------------------------
  490. # Transcoding Settings Tab
  491. # ----------------------------------------------------------------------------
  492.  
  493. # Ordered list of engines
  494. # -----------------------
  495. # System generates list of available engines, list depends on host.
  496. # XXX Can be empty, which overrides the default value.
  497. # Default: "ffmpegvideo,mencoder,tsmuxer,ffmpegaudio,tsmuxeraudio,ffmpegwebvideo,vlcwebvideo,vlcvideo,mencoderwebvideo,vlcaudio,ffmpegdvrmsremux,rawthumbs"
  498. # engines =
  499.  
  500. # ----------------------------------------------------------------------------
  501. # Transcoding Settings Tab: Common Transcode Settings Page
  502. # ----------------------------------------------------------------------------
  503.  
  504. # ---< General settings >-----------------------------------------------------
  505.  
  506. # Maximum transcode buffer size in MB (recommended: 200)
  507. # ------------------------------------------------------
  508. # Size of buffer in MB before transmitting to client. The maximum value is 400
  509. # if the program memory is set to its default value (768).
  510. # Default: 200
  511. maximum_video_buffer_size =
  512.  
  513. # CPU threads to use when enabled for engine
  514. # ------------------------------------------
  515. # Choose the number of processor cores that should be used for transcoding.
  516. # Default: "", which will use automatic-detection.
  517. number_of_cpu_cores =
  518.  
  519. # #--TRANSCODE--# folder chapter support
  520. # --------------------------------------
  521. # Makes UMS create virtual chapter markers in a video file. These let
  522. # you jump to a specific point in a video.
  523. # Default: false
  524. chapter_support =
  525.  
  526. # #--TRANSCODE--# folder chapter support interval
  527. # -----------------------------------------------
  528. # Determines the interval time in minutes for virtual chapter markers.
  529. # Default: 5
  530. chapter_interval =
  531.  
  532. # Disable subtitles
  533. # -----------------
  534. # Default: false
  535. disable_subtitles =
  536.  
  537. # ---< Video Settings Tab >---------------------------------------------------
  538.  
  539. # Enable GPU acceleration
  540. # -----------------------
  541. # Use GPU (video card) acceleration for AviSynth and VLC engines
  542. # Note: Works only on video cards with GPU acceleration supported.
  543. # Default: false
  544. gpu_acceleration =
  545.  
  546. # Lossless DVD video playback
  547. # ---------------------------
  548. # Default: true
  549. mencoder_remux_mpeg2 =
  550.  
  551. # ---< Misc settings >--------------------------------------------------------
  552.  
  553. # Transcoding quality (MPEG-2)
  554. # ----------------------------
  555. # Sets the quality for MPEG-2 conversion; MPEG-2 is the fallback format if the
  556. # client does not support a video format natively.
  557. # Automatic options are highly recommended since they will adapt based on the
  558. # video being played to ensure the highest quality for your network.
  559. # Note: This is also used by FFmpeg and AviSynth/FFmpeg engines, not just
  560. # MEncoder. Should probably be renamed to something like mpeg2_settings in the
  561. # future.
  562. # Default: "Automatic (Wired)"
  563. mpeg2_main_settings =
  564.  
  565. # Transcoding quality (H.264)
  566. # ---------------------------
  567. # Sets the quality for H.264 conversion.
  568. # Possible values are either "Automatic (Wired)", "Automatic (Wireless)", or a
  569. # CRF (Constant Rate Factor) value.
  570. # Automatic options are highly recommended since they will adapt based on the
  571. # video being played to ensure the highest quality for your network.
  572. # Default: "Automatic (Wired)"
  573. x264_constant_rate_factor =
  574.  
  575. # Skip transcoding for the following extensions (comma-separated)
  576. # ---------------------------------------------------------------
  577. # Do not transcode files with an extension in the list.
  578. # Asterisk (*) means do not transcode anything.
  579. # Note: This overrides the renderer configuration. It should only be used for
  580. # troubleshooting when you are not able to edit the renderer configuration.
  581. # Default: ""
  582. disable_transcode_for_extensions =
  583.  
  584. # Force transcoding for the following extensions (comma-separated)
  585. # ----------------------------------------------------------------
  586. # Always transcode files with an extension in the list.
  587. # Asterisk (*) means transcode everything.
  588. # Note: This overrides the renderer configuration. It should only be used for
  589. # troubleshooting when you are not able to edit the renderer configuration.
  590. # Default: ""
  591. force_transcode_for_extensions =
  592.  
  593. # ---< Audio settings tab >---------------------------------------------------
  594.  
  595. # Universal Media Server decides what to do with the audio track by checking
  596. # options in the following order:
  597. # 1. (AC-3 and DTS tracks) Keep DTS track / Keep AC-3 track => remuxes track
  598. # as-is
  599. # 2. (all tracks) Use LPCM transcoding => transcodes track with LPCM transport
  600. # (lossless)
  601. # 3. (all tracks) Use AC-3 transcoding => transcodes track with AC-3 transport
  602. # (lossy)
  603.  
  604. # Maximum number of audio channels to output for AC-3 re-encoding
  605. # ---------------------------------------------------------------
  606. # The maximum number of channels used for AC-3 transcoding. Do not change this
  607. # value even if you use 2.0 speakers because of a MEncoder downmixing bug!
  608. # Default: 6
  609. audio_channels =
  610.  
  611. # Use LPCM for audio
  612. # ------------------
  613. # Choose whether or not the Pulse Code Modulation (PCM) audio format should be
  614. # used instead of AC-3 with the MEncoder transcoding engine. Offers lossless
  615. # transcoding quality but higher bitrate. Bandwidth requirements are about 1.5
  616. # Mbit/s for 2.0 and 4.6 Mbit/s for 5.1 audio. Not suitable for Wi-Fi
  617. # streaming.
  618. # Default: false
  619. audio_use_pcm =
  620.  
  621. # Keep AC-3 tracks
  622. # ----------------
  623. # Remux AC-3 instead of transcoding it.
  624. # Default: true
  625. audio_remux_ac3 =
  626.  
  627. # Keep DTS tracks
  628. # ---------------
  629. # Remux DTS instead of transcoding it.
  630. # Default: false
  631. audio_embed_dts_in_pcm =
  632.  
  633. # AC-3 re-encoding audio bitrate (in Kbps) (e.g. 576, 640)
  634. # --------------------------------------------------------
  635. # Specify the bitrate for AC-3 transcoding; do not exceed the quality
  636. # supported by the AV receiver or amplifier.
  637. # Default: 640
  638. audio_bitrate =
  639.  
  640. # Audio language priority
  641. # -----------------------
  642. # A comma-separated list of language codes that defines the priority for
  643. # MEncoder when choosing audio languages, where "und" stands for "undefined".
  644. # XXX Can be empty, which overrides the default value.
  645. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  646. # audio_languages =
  647.  
  648. # ---< Subtitles settings tab >-----------------------------------------------
  649.  
  650. # Subtitles language priority
  651. # --------------------------
  652. # A comma-separated list of language codes that defines the priority for
  653. # MEncoder when choosing subtitles languages, where "und" stands for
  654. # "undefined". XXX Can be empty, which overrides the default value.
  655. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  656. # subtitles_languages =
  657.  
  658. # Forced language
  659. # --------------
  660. # Default: "", which will let UMS pick the subtitles language.
  661. # XXX Can be empty, which overrides the default value.
  662. # forced_subtitle_language =
  663.  
  664. # Forced tags
  665. # -----------
  666. # The tag string that identifies the subtitles language that will be forced
  667. # upon MEncoder.
  668. # Default: "forced"
  669. forced_subtitle_tags =
  670.  
  671. # Audio/subtitle language priority
  672. # --------------------------------
  673. # Determine the string of audio language and subtitles language pairs ordered
  674. # by priority for MEncoder to try to match. Audio language and subtitles
  675. # language should be comma separated as a pair; individual pairs should be
  676. # semicolon separated. "*" can be used to match any language. Subtitles
  677. # language can be defined as "off" (e.g. "jpn,off;*,*").
  678. # Default: a localized list (e.g. "eng,off;*,eng;*,und").
  679. # audio_subtitles_languages =
  680.  
  681. # Alternate subtitles folder
  682. # --------------------------
  683. # GUI offers a navigator to a folder generating an absolute path.
  684. # Default: ""
  685. alternate_subtitles_folder =
  686.  
  687. # Codepage for non-Unicode subtitles
  688. # ----------------------------------
  689. # The character encoding (or code page) that MEncoder should use for
  690. # non-Unicode external subtitles.
  691. # Default: "" (auto detect, do not force encoding with -subcp key).
  692. subtitles_codepage =
  693.  
  694. # FriBiDi mode
  695. # ------------
  696. # Determine whether or not MEncoder should use FriBiDi mode, which is needed
  697. # to display subtitles in languages that read from right to left, like Arabic,
  698. # Farsi, Hebrew, Urdu, etc.
  699. # Default: false
  700. mencoder_subfribidi =
  701.  
  702. # Specify TrueType font
  703. # ---------------------
  704. # GUI offers a navigator to a folder generating an absolute path.
  705. # To use it the font must be registered in the OS. In the Win OS the font file
  706. # should be either put into the "\Windows\Fonts" folder or Win 10 users
  707. # can click the right mouse button on the font file and choose "Install".
  708. # For other operational systems the font file must be also put into the font folder
  709. # or used the specific technique to register it to the OS.
  710. # If not properly specified or not registered in the OS the default font is used.
  711. #
  712. # Default: ""
  713. subtitles_font =
  714.  
  715. # Styled subtitles: Font scale
  716. # ----------------------------
  717. # The font scale used for ASS subtitling.
  718. # Default: 1.4
  719. subtitles_ass_scale =
  720.  
  721. # Styled subtitles: Font outline
  722. # ------------------------------
  723. # The outline parameter used for ASS subtitling.
  724. # Default: 1
  725. subtitles_ass_outline =
  726.  
  727. # Styled subtitles: Font shadow
  728. # -----------------------------
  729. # The shadow parameter used for ASS subtitling.
  730. # Default: 1
  731. subtitles_ass_shadow =
  732.  
  733. # Styled subtitles: Margin
  734. # ------------------------
  735. # The margin used for ASS subtitling.
  736. # Default: 10
  737. subtitles_ass_margin =
  738.  
  739. # Load subtitles
  740. # --------------
  741. # Choose whether UMS should check for external subtitles files with the same
  742. # name as the media (*.srt, *.sub, *.ass, etc.).
  743. # Default: true
  744. autoload_external_subtitles =
  745.  
  746. # Color
  747. # -----
  748. # The integer value for the subtitles colour. GUI offers a palette to choose
  749. # from that will generate a number. Default is empty, causing UMS to pick
  750. # white.
  751. # Default: ""
  752. subtitles_color =
  753.  
  754. # Force external subtitles
  755. # ------------------------
  756. # Whether we should force external subtitles with the same name as the media
  757. # (*.srt, *.sub, *.ass, etc.) to display, regardless of whether language
  758. # preferences disable them.
  759. # Default: true
  760. force_external_subtitles =
  761.  
  762. # Use embedded style
  763. # ------------------
  764. # Whether the style rules defined by styled subtitles (ASS/SSA) should be
  765. # followed (true) or overridden by our style rules (false).
  766. # Default: true
  767. use_embedded_subtitles_style =
  768.  
  769. # 3D subtitles depth (%)
  770. # ----------------------
  771. # The depth of the 3D subtitles.
  772. # Note: This should be between "-2" and "+2".
  773. # Default: "0"
  774. 3d_subtitles_depth =
  775.  
  776. # Live subtitles limit
  777. # --------------------
  778. # The maximum number of live subtitles results to show.
  779. # Default: 20
  780. live_subtitles_limit =
  781.  
  782. # Keep live subtitles
  783. # -------------------
  784. # Whether to keep downloaded live subtitles permanently.
  785. # See live_subtitles_timeout below.
  786. # Default: false
  787. live_subtitles_keep =
  788.  
  789. # Live subtitles timeout
  790. # ----------------------
  791. # Determines how many days to keep downloaded live subtitles.
  792. # If live_subtitles_keep is true this setting is ignored.
  793. # Default: 14
  794. live_subtitles_timeout =
  795.  
  796. # ----------------------------------------------------------------------------
  797. # Transcoding Settings Tab: FFmpeg Page
  798. # ----------------------------------------------------------------------------
  799.  
  800. # ---< General settings >-----------------------------------------------------
  801.  
  802. # Enable multithreading
  803. # ---------------------
  804. # Whether FFmpeg should use multithreading
  805. # Default: "", which will use automatic-detection.
  806. ffmpeg_multithreading =
  807.  
  808. # Remux videos with tsMuxeR when possible instead of transcoding
  809. # --------------------------------------------------------------
  810. # Whether FFmpeg should remux videos with tsMuxeR when possible instead of
  811. # transcoding
  812. # Default: false
  813. ffmpeg_mux_tsmuxer_compatible =
  814.  
  815. # Fontconfig/Embedded fonts
  816. # -------------------------
  817. # Whether FFmpeg should use fontconfig for its subtitles
  818. # Default: false
  819. ffmpeg_fontconfig =
  820.  
  821. # Defer to MEncoder when transcoding subtitles
  822. # --------------------------------------------
  823. # Whether FFmpeg should defer to MEncoder when there are subtitles that need
  824. # to be transcoded.
  825. # Both engines can handle subtitles, but MEncoder is more stable right now.
  826. # Default: true
  827. ffmpeg_mencoder_subtitles =
  828.  
  829. # ----------------------------------------------------------------------------
  830. # Transcoding Settings Tab: MEncoder Page
  831. # ----------------------------------------------------------------------------
  832.  
  833. # ---< General settings >-----------------------------------------------------
  834.  
  835. # Enable multithreading
  836. # ---------------------
  837. # Whether MEncoder should use multithreading
  838. # Default: "", which will use automatic-detection.
  839. mencoder_mt =
  840.  
  841. # Skip loop filter deblocking for H.264
  842. # -------------------------------------
  843. # Default: false
  844. mencoder_skip_loop_filter =
  845.  
  846. # A/V sync alternative method
  847. # ---------------------------
  848. # This disables MEncoder's unreliable, automatic A/V sync
  849. # Default: true
  850. mencoder_nooutofsync =
  851.  
  852. # Change video resolution
  853. # -----------------------
  854. # Default: false
  855. mencoder_scaler =
  856.  
  857. # Change video resolution width
  858. # -----------------------------
  859. # Default: "0"
  860. mencoder_scalex =
  861.  
  862. # Change video resolution height
  863. # ------------------------------
  864. # Default: "0"
  865. mencoder_scaley =
  866.  
  867. # Force framerate parsed from FFmpeg
  868. # ----------------------------------
  869. # Default: false
  870. mencoder_forcefps =
  871.  
  872. # Deinterlace filter
  873. # ------------------
  874. # Default: false
  875. mencoder_yadif =
  876.  
  877. # Remux videos with tsMuxeR when possible instead of transcoding
  878. # --------------------------------------------------------------
  879. # Default: false
  880. mencoder_mux_compatible =
  881.  
  882. # Expert Settings: Codec-specific parameters: Use application defaults
  883. # --------------------------------------------------------------------
  884. # Disabling this means UMS will defer to your custom parameters below.
  885. # Default: true
  886. mencoder_intelligent_sync =
  887.  
  888. # Expert Settings: Codec-specific parameters: Custom parameters
  889. # -------------------------------------------------------------
  890. # Sets additional codec-specific configuration options for MEncoder.
  891. # Default: ""
  892. mencoder_codec_specific_script =
  893.  
  894. # Custom options (e.g. -vf hqdn3d)
  895. # --------------------------------
  896. # Default: ""
  897. mencoder_custom_options =
  898.  
  899. # Add borders for overscan compensation: Width (%)
  900. # ------------------------------------------------
  901. # Default: 0
  902. mencoder_overscan_compensation_width =
  903.  
  904. # Add borders for overscan compensation: Height (%)
  905. # -------------------------------------------------
  906. # Default: 0
  907. mencoder_overscan_compensation_height =
  908.  
  909. # ---< Subtitles settings >---------------------------------------------------
  910.  
  911. # Use ASS/SSA subtitles styling
  912. # -----------------------------
  913. # Whether MEncoder should use ASS/SSA subtitles styling.
  914. # Default: true
  915. mencoder_ass =
  916.  
  917. # Fontconfig/Embedded fonts
  918. # -------------------------
  919. # Default: true
  920. mencoder_fontconfig =
  921.  
  922. # Plaintext subtitles settings: Font scale
  923. # ----------------------------------------
  924. # The subfont text scale parameter used for subtitling without ASS.
  925. # Default: 3
  926. mencoder_noass_scale =
  927.  
  928. # Plaintext subtitles settings: Font outline
  929. # ------------------------------------------
  930. # The subfont outline parameter used for subtitling without ASS.
  931. # Default: 1
  932. mencoder_noass_outline =
  933.  
  934. # Plaintext subtitles settings: Font blur
  935. # ---------------------------------------
  936. # The subfont blur parameter used for subtitling without ASS.
  937. # Default: 1
  938. mencoder_noass_blur =
  939.  
  940. # Plaintext subtitles settings: Margin (%)
  941. # ----------------------------------------
  942. # The subpos parameter used for subtitling without ASS.
  943. # Default: 2
  944. mencoder_noass_subpos =
  945.  
  946. # DVD/VOBsub subtitles quality (0-4) (higher is better)
  947. # -----------------------------------------------------
  948. # Default: 3
  949. mencoder_vobsub_subtitle_quality =
  950.  
  951. # ----------------------------------------------------------------------------
  952. # Transcoding Settings Tab: tsMuxeR Page
  953. # ----------------------------------------------------------------------------
  954.  
  955. # Force FPS parsed from FFmpeg in the meta file
  956. # ---------------------------------------------
  957. # Default: true
  958. tsmuxer_forcefps =
  959.  
  960. # Mux all audio tracks
  961. # --------------------
  962. # Default: false
  963. tsmuxer_mux_all_audiotracks =
  964.  
  965. # ----------------------------------------------------------------------------
  966. # Transcoding Settings Tab: AviSynth/FFmpeg Page
  967. # ----------------------------------------------------------------------------
  968.  
  969. # Enable multithreading
  970. # ---------------------
  971. # Whether AviSynth/FFmpeg should use multithreading
  972. # Default: "", which will use automatic-detection.
  973. ffmpeg_avisynth_multithreading =
  974.  
  975. # Enable True Motion motion interpolation via InterFrame
  976. # ------------------------------------------------------
  977. # Uses motion interpolation to give videos higher framerates.
  978. # 25FPS becomes 50FPS, others become 60FPS.
  979. # Default: false
  980. ffmpeg_avisynth_interframe =
  981.  
  982. # Enable GPU use with True Motion. Recommended if you have a video card
  983. # ---------------------------------------------------------------------
  984. # Whether InterFrame should use the video card for some of the work
  985. # Default: false
  986. ffmpeg_avisynth_interframegpu =
  987.  
  988. # Enable AviSynth variable framerate change into a constant framerate
  989. # -------------------------------------------------------------------
  990. # Pass the flag "convertfps=true" to AviSynth.
  991. # Default: true
  992. ffmpeg_avisynth_convertfps =
  993.  
  994. # ----------------------------------------------------------------------------
  995. # Transcoding Settings Tab: AviSynth/MEncoder Page
  996. # ----------------------------------------------------------------------------
  997.  
  998. # Enable multithreading
  999. # ---------------------
  1000. # Whether AviSynth should use multithreading
  1001. # Default: false
  1002. avisynth_multithreading =
  1003.  
  1004. # Enable True Motion motion interpolation via InterFrame
  1005. # ------------------------------------------------------
  1006. # Uses motion interpolation to give videos higher framerates.
  1007. # 25FPS becomes 50FPS, others become 60FPS.
  1008. # Default: false
  1009. avisynth_interframe =
  1010.  
  1011. # Enable GPU use with True Motion. Recommended if you have a video card
  1012. # ---------------------------------------------------------------------
  1013. # Whether InterFrame should use the video card for some of the work
  1014. # Default: false
  1015. avisynth_interframegpu =
  1016.  
  1017. # Enable AviSynth variable framerate change into a constant framerate
  1018. # -------------------------------------------------------------------
  1019. # Pass the flag "convertfps=true" to AviSynth.
  1020. # Default: true
  1021. avisynth_convert_fps =
  1022.  
  1023. # AviSynth script
  1024. # ---------------
  1025. # The template for the AviSynth script. The script string may contain the
  1026. # character "\u0001", which will be treated as newline character.
  1027. # Default: "<movie>\u0001<sub>" (\u0001 is a new line)
  1028. avisynth_script =
  1029.  
  1030. # ----------------------------------------------------------------------------
  1031. # Transcoder Settings: VLC
  1032. # ----------------------------------------------------------------------------
  1033.  
  1034. # Enable experimental codecs
  1035. # --------------------------
  1036. # Default: false
  1037. # vlc_use_experimental_codecs =
  1038.  
  1039. # A/V sync alternative method
  1040. # ---------------------------
  1041. # Default: false
  1042. # vlc_audio_sync_enabled =
  1043.  
  1044. # ----------------------------------------------------------------------------
  1045. # Non-GUI Options
  1046. # ----------------------------------------------------------------------------
  1047.  
  1048. # ---< Binary tools paths >---------------------------------------------------
  1049. # Path to mencoder (absolute or relative from project.binaries.dir)
  1050. # Default:
  1051. # Win: win32/mencoder.exe
  1052. # Mac: osx/mencoder
  1053. # Linux: mencoder + system PATH
  1054. mencoder_path =
  1055.  
  1056. # Path to ffmpeg (absolute or relative from project.binaries.dir)
  1057. # Default:
  1058. # Win: win32/ffmpeg.exe
  1059. # Mac: osx/ffmpeg
  1060. # Linux: ffmpeg + system PATH
  1061. ffmpeg_path =
  1062.  
  1063. # Path to mplayer (absolute or relative from project.binaries.dir)
  1064. # Default:
  1065. # Win: win32/mplayer.exe
  1066. # Mac: osx/mplayer
  1067. # Linux: mplayer + system PATH
  1068. mplayer_path =
  1069.  
  1070. # Path to tsMuxeR (absolute or relative from project.binaries.dir)
  1071. # Default:
  1072. # Win: win32/tsMuxeR.exe
  1073. # Mac: osx/tsMuxeR
  1074. # Linux: tsMuxeR + system PATH
  1075. tsmuxer_path =
  1076.  
  1077. # Path to dcraw (absolute or relative from project.binaries.dir)
  1078. # Default:
  1079. # Win: win32/dcrawMS.exe
  1080. # Mac: osx/dcraw
  1081. # Linux: dcraw + system PATH
  1082. dcraw_path =
  1083.  
  1084. # Path to FLAC (absolute or relative from project.binaries.dir)
  1085. # Default:
  1086. # Win: win32/flac.exe
  1087. # Mac: osx/flac
  1088. # Linux: flac + system PATH
  1089. flac_path =
  1090.  
  1091. # Path to VideoLAN (absolute or relative from project.binaries.dir)
  1092. # Default:
  1093. # Win: videolan/vlc.exe
  1094. # Mac: /Applications/VLC.app/Contents/MacOS/VLC
  1095. # Linux: vlc + system PATH
  1096. vlc_path =
  1097.  
  1098. # ---< Unsorted >-------------------------------------------------------------
  1099.  
  1100. # Default: false
  1101. transcode_block_multiple_connections =
  1102.  
  1103. # Default: true
  1104. transcode_keep_first_connection =
  1105.  
  1106. # The maximum size (in MB) that UMS should use for buffering audio.
  1107. # Default: 100
  1108. maximum_audio_buffer_size =
  1109.  
  1110. # The minimum size (in MB) that UMS should use for the streaming media buffer.
  1111. # Default: 1
  1112. minimum_web_buffer_size =
  1113.  
  1114. # Virtual folders allow you to combine real folders into virtual ones
  1115. # and give them custom names.
  1116. # Example: VFolderName1|Folder1Path,Folder2Path;VFolderName2|Folder1Path
  1117. # Note: Backslashes must be doubled. For example, if you have a folder named
  1118. # SubFolder inside ParentFolder, write it like ParentFolder\\SubFolder
  1119. # Default: ""
  1120. virtual_folders =
  1121.  
  1122. # The location of your virtual folders config file, which contains a
  1123. # json-formatted list of virtual folders.
  1124. # The file will be loaded from your profile directory.
  1125. # See VirtualFolders.conf in your profile directory for an example of syntax.
  1126. # JSON-validators can be useful for making sure the code of your file is
  1127. # valid, an example of which is jsonlint.com.
  1128. # When this file is used, the string above (virtual_folders) will be ignored.
  1129. # Example: VirtualFolders.conf
  1130. # Default: ""
  1131. virtual_folders_file =
  1132.  
  1133. # iTunes library path
  1134. # -------------------
  1135. # The absolute location of your iTunes library file. When this is blank, UMS
  1136. # uses different methods for either Windows or OS X to find the default
  1137. # location of the file. Setting this to a string overrides that automatic
  1138. # process.
  1139. # Example: C:\\iTunes\\iTunes Music Library.xml
  1140. # Default: ""
  1141. itunes_library_path =
  1142.  
  1143. # Ignored folders
  1144. # ---------------
  1145. # A comma-separated list of folders to ignore.
  1146. # Example: C:\\IgnoredFolder1,C:\\IgnoredFolder2
  1147. # Default: ""
  1148. folders_ignored =
  1149.  
  1150. # Ping path
  1151. # ---------
  1152. # The path to PsPing on Windows.
  1153. # If this is set, PsPing is used to more accurately calculate network speed.
  1154. # Default: ""
  1155. ping_path =
  1156.  
  1157. # UPnP enable
  1158. # ----------
  1159. # Whether to start the upnp service.
  1160. # This allows detailed monitoring and remote-control of devices that support it.
  1161. # Default: true
  1162. upnp_enable =
  1163.  
  1164. ###########################################
  1165. ## Web settings
  1166. ###########################################
  1167.  
  1168. # Web port
  1169. # --------
  1170. # The port that the web interface can be accessed by.
  1171. # Users can try to use port 80 in case there is not running any other program on the PC
  1172. # using that port. Port 80 has an benefit that is not necessary to implicitly define
  1173. # the port and only lokalhost (e.g. http://192.168.0.100) is nedded to open the web
  1174. # interface. Also the web can be opened only by http://[pc name] which is useful in case
  1175. # the DHCP is used in the network and address for PC runing UMS is assined dynamically.
  1176. # Example: 7000, which means the web interface is at localhost:7000
  1177. # Default: 9001
  1178. web_port =
  1179.  
  1180. # Web enable
  1181. # ----------
  1182. # Whether the web interface will be loaded and accessible
  1183. # Default: true
  1184. web_enable =
  1185.  
  1186. # Web path
  1187. #------------
  1188. # Path to were the UMS web files (like javascripts etc)
  1189. # are to be found.
  1190. # Default: web
  1191. web_path=
  1192.  
  1193. # Web authentication
  1194. #--------------------
  1195. # Whether to force authentication
  1196. # or not over the web interface
  1197. # Default: true
  1198. web_authenticate=
  1199.  
  1200. # Web heigth
  1201. #-------------------
  1202. # Height of the player in the web browser
  1203. # Default: 404
  1204. web_height=
  1205.  
  1206. # Web width
  1207. #-------------------
  1208. # Width of the player in the web browser
  1209. # Default: 720
  1210. web_width=
  1211.  
  1212. # Web size
  1213. #------------
  1214. # Set the size of the player
  1215. # as a wxh string
  1216. # Default: use web_heigt and web_width defaults
  1217. web_size=
  1218.  
  1219. # Web continue
  1220. #-------------------
  1221. # Continue automatically.
  1222. # One setting per media type
  1223. # Default: true for audio, false for others
  1224. web_continue_audio=
  1225. web_continue_image=
  1226. web_continue_video=
  1227.  
  1228. # Web loop
  1229. #------------------------
  1230. # Loop on the "edges".
  1231. # If set pressing next on the last media in a folder
  1232. # will play the first in the folder. And vice versa.
  1233. # One setting per media type
  1234. # Default: true for audio, false for others
  1235. web_loop_audio=
  1236. web_loop_image=
  1237. web_loop_video=
  1238.  
  1239. # Web Image slide show delay
  1240. #------------------------------
  1241. # Number of milliseconds to wait before
  1242. # showing the next image automatically.
  1243. # Requires web_continue_image to be true.
  1244. # Default: 0 meaning you have to manually go to the next image.
  1245. web_image_show_delay=
  1246.  
  1247. # Web Threads
  1248. #-----------------
  1249. # Configures how many threads/connections/user requests
  1250. # the web server can have at the same time.
  1251. # Deafult: 30 max 100
  1252. web_threads=
  1253.  
  1254. # Web flash
  1255. #----------------
  1256. # Use flash player by default.
  1257. # Deafult: false
  1258. web_flash=
  1259.  
  1260. # Web subtitles
  1261. #--------------------
  1262. # Force subtitles to be transcoded
  1263. # in to the video.
  1264. # Default: false
  1265. web_subtitles_transcoded=
  1266.  
  1267. # Other web settings
  1268. #--------------------
  1269. # Not documented
  1270. web_chrome_mkv_as_webm_spoof=
  1271. web_firefox_linux_mp4=
  1272.  
  1273. ######################################
  1274. ## PinCode folder settings
  1275. ######################################
  1276.  
  1277. # PinCode charset
  1278. #------------------
  1279. # Which charset to chose
  1280. # PinCodes from.
  1281. # 0 = Digits (0-9)
  1282. # 1 = Letters (A-Z)
  1283. # 2 = Both
  1284. # Default: 0 (digits)
  1285. code_charset=
  1286.  
  1287. # PinCode don't show thumbnails
  1288. #-----------------------------
  1289. # Whether or not to show thumnails
  1290. # of media that is hidden by Pincode folders.
  1291. # If true a generic thumbnail will be shown.
  1292. # Default: true
  1293. code_show_thumbs_no_code=
  1294.  
  1295. # PinCode valid timeout
  1296. #------------------------
  1297. # Determine for how long
  1298. # an entered pincode is valid
  1299. # and thus unlocks the media
  1300. # Default: 4 (hours)
  1301. code_valid_timeout=
  1302.  
  1303. # PinCode enabled
  1304. #--------------------
  1305. # Whether or not to
  1306. # use Pincodes at all
  1307. # Default: true
  1308. code_enable=
  1309.  
  1310.  
  1311. # Normalize audio volume with MEncoder
  1312. # ------------------------------------
  1313. # Makes quiet things relatively louder so they are easier to distinguish.
  1314. # Note: This is currently broken in MEncoder so do not use except for testing.
  1315. # Default: false
  1316. mencoder_normalize_volume =
  1317.  
  1318. # Profile name
  1319. # ------------
  1320. # An optional identifier used to distinguish this profile (i.e. collection of
  1321. # settings) from other profiles. The profile name is displayed in the renderer
  1322. # in square brackets after the software name e.g.
  1323. #
  1324. # Universal Media Server [myprofile]
  1325. #
  1326. # See the FAQ for details on how to create and use multiple profiles:
  1327. # http://www.universalmediaserver.com/faq/#Setup2
  1328. # Default: the server's hostname.
  1329. name =
  1330.  
  1331. # Skip network interfaces
  1332. # -----------------------
  1333. # Specifies a comma separated list of network interfaces to ignore when
  1334. # scanning for a suitable network interface to attach to. This is typically
  1335. # used to ignore virtual interfaces created by other applications.
  1336. # Default: "tap,vmnet,vnic", which ignores interfaces named "tap0", "tap1" and
  1337. # "tap2", but it allows an interface named "eth0".
  1338. skip_network_interfaces =
  1339.  
  1340. # WEB.conf path
  1341. # -------------
  1342. # The path to the WEB.conf file to use with this profile. This can be a
  1343. # relative or absolute path to a file or directory as per the rules for
  1344. # PMS_PROFILE described in the FAQ:
  1345. # http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=41214#p49895
  1346. # Default is $PROFILE_DIRECTORY/WEB.conf
  1347. web_conf =
  1348.  
  1349. # Plugins directory
  1350. # -----------------
  1351. # The directory where UMS can find the plugins.
  1352. # Default: "plugins"
  1353. plugins =
  1354.  
  1355. # Transcode Folder Name
  1356. # ---------------------
  1357. # Assign a different name to the #--TRANSCODE--# folder e.g. "Subtitles" or
  1358. # "Languages".
  1359. # Default: The localized version of "#--TRANSCODE--#".
  1360. transcode_folder_name =
  1361.  
  1362. ######################################
  1363. ## Logging settings
  1364. ######################################
  1365.  
  1366. # Log Level
  1367. # ---------------------
  1368. # The root logging level, a root filter applied to all logging, which can be:
  1369. # ALL, TRACE, DEBUG, INFO, WARN, ERROR or OFF
  1370. # This property can also be set from the 'Logs' tab in the gui.
  1371. # Default: "DEBUG"
  1372. log_level =
  1373.  
  1374. # Logfile name
  1375. # ---------------------
  1376. # The name of the standard log file. This is just the file name,
  1377. # no path information must be given here. The location of the log
  1378. # file is decided by rules that varies by platform and some other
  1379. # factors.
  1380. # Default: "debug.log"
  1381. logging_logfile_name =
  1382.  
  1383. # Logging Buffered
  1384. # ---------------------
  1385. # By default the log file(s) are flushed/written to disk after each new log
  1386. # event. SSD drives can be written to a fixed number of times only, and logging
  1387. # can be a great source of wear on such drives. Buffered logging makes UMS
  1388. # buffer up to 8 kb between each write, significantly reducing the number of
  1389. # writes. Buffered writes can also help performance if you write to regular a
  1390. # HDD with a high workload. Operating systems and drives often has their own
  1391. # buffering, so enabling buffered logging might not make any real difference.
  1392. # Please be aware that if UMS crashes or is terminated, the buffer might not
  1393. # get flushed/written. If you're debugging a specific problem concerning
  1394. # crashing or hanging, buffering should probably be turned off.
  1395. # Please note: If UMS is started in "forced" TRACE mode, buffering will
  1396. # be disabled regardless of this setting.
  1397. # Default: false
  1398. logging_buffered =
  1399.  
  1400. # Logging Filter Console
  1401. # ---------------------
  1402. # A separate filter for the console that filters after the root filter have
  1403. # done it's filtering. It's not possible to get back things filtered out by
  1404. # Log Level above, but you can further filter out more before it's written to
  1405. # the console. Valid values are:
  1406. # ALL, TRACE, DEBUG, INFO, WARN, ERROR or OFF
  1407. # Default: "INFO"
  1408. logging_filter_console =
  1409.  
  1410. # Logging Filter Log Tab
  1411. # ---------------------
  1412. # A separate filter for the log window in the "Logs" tab in the GUI that
  1413. # filters after the root filter have done it's filtering. It's not possible to
  1414. # get back things filtered out by Log Level above, but you can further filter
  1415. # out more before it's written to the log window. Valid values are:
  1416. # the console. Valid values are:
  1417. # Default: "INFO"
  1418. logging_filter_logs_tab =
  1419.  
  1420. # Logging Logs Tab Linebuffer
  1421. # ---------------------
  1422. # Specifies how many lines the log windows on the "Logs" tab in the GUI will
  1423. # store before deleting the oldest entries. This will decide the length of the
  1424. # scrollable area.
  1425. # Default: 1000
  1426. logging_logs_tab_linebuffer =
  1427.  
  1428. #---< Syslog settings >----------------
  1429. #
  1430. # Please note: It is possible to customize UMS logging via LogBack
  1431. # configuration files (logback.xml or logback.headless.xml). You can place
  1432. # customized versions of these files in your profile folder, which will
  1433. # override the default LogBack files. The syslog settings presented here
  1434. # should NOT be used in conjunction with customized LogBack configuration
  1435. # files, but are meant to give access to syslog logging for those that don't
  1436. # want to aquire in-depth knowledge about LogBack configuration.
  1437.  
  1438. # Logging Use Syslog
  1439. # ---------------------
  1440. # Activates syslog logging and disables file logging. That enables you to
  1441. # send all logging to a differnt computer running a syslog server completely
  1442. # removing all local disk I/O from logging, or to collect logs in a centralized
  1443. # way. Syslog Host must be specified if this is enabled.
  1444. # Please note: If UMS is started in "forced" TRACE mode, file logging will
  1445. # be enabled and syslog disabled regardless of this setting.
  1446. # Default: false
  1447. logging_use_syslog =
  1448.  
  1449. # Logging Syslog Host
  1450. # ---------------------
  1451. # Host name or IP address for the syslog server. Use "localhost" for logging
  1452. # to a syslog server on the same computer. The name must be resolvable (via
  1453. # DNS, WINS, HOSTS etc.) or be an IP address for syslog logging to be activated.
  1454. # Default: ""
  1455. logging_syslog_host =
  1456.  
  1457. # Logging Syslog Port
  1458. # ---------------------
  1459. # UDP port to use for syslog logging. This should normally be left at the
  1460. # default value.
  1461. # Default: 514
  1462. logging_syslog_port =
  1463.  
  1464. # Logging Syslog Facility
  1465. # Syslog facility can be specified for filtering purposes, but is limited to
  1466. # one of the following values: AUTH, AUTHPRIV, DAEMON, CRON, FTP, LPR, KERN,
  1467. # MAIL, NEWS, SYSLOG, USER, UUCP, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5,
  1468. # LOCAL6 or LOCAL7. Invalid values will be replaced with the default.
  1469. # Default: "USER"
  1470. logging_syslog_facility =
  1471.  
  1472. # ---< Other settings saved by UMS >------------------------------------------
  1473. alternativeffmpegpath =
  1474. gui_log_search_case_sensitive =
  1475. gui_log_search_use_regex =
  1476. gui_log_search_multiline =
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement