Advertisement
donniezazen

PMS config file

Feb 28th, 2013
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.89 KB | None | 0 0
  1. # ============================================================================
  2. # Configuration file for PMS
  3. # ============================================================================
  4. # Introduction:
  5. #
  6. # This "PMS.conf" file holds the configuration settings for PMS. These settings
  7. # are usually set using the PMS graphical user interface. If you are running
  8. # PMS on a headless system, you may not be able to kick off the GUI; instead,
  9. # you can edit the PMS.conf file to control the operation of PMS. A restart of
  10. # PMS is required after editing this file.
  11. #
  12. # Commenting out an option or leaving it empty forces the PMS 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
  19. # in this file or set using the PMS GUI and saved. The value can take a number
  20. # of 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 GUI option label.
  30. #
  31. # ----------------------------------------------------------------------------
  32. # General Configuration Screen
  33. # ----------------------------------------------------------------------------
  34. # ---< General Settings >-----------------------------------------------------
  35.  
  36. # Profile Name
  37. # --------------
  38. # An optional identifier used to distinguish this profile (i.e. collection of settings)
  39. # from other profiles. The profile name is displayed in the renderer in square
  40. # brackets after the software name e.g.
  41. #
  42. # PS3 Media Server [myprofile]
  43. #
  44. # See the FAQ for details on how to create and use multiple profiles:
  45. # http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=49895#p49895
  46. # Default: the server's hostname.
  47. name = donnie-server
  48.  
  49. # Interface Language
  50. # -------------------
  51. # GUI option: Language (selector)
  52. # The language to use for the GUI and other dialogues.
  53. # The following translations are available:
  54. # ar = Arab
  55. # bg = Bulgarian
  56. # ca = Catalan
  57. # zhs = Chinese (Simplified)
  58. # zht = Chinese (Traditional)
  59. # cz = Czech
  60. # da = Danish
  61. # nl = Dutch
  62. # en = English
  63. # fi = Finish
  64. # fr = French
  65. # de = German
  66. # el = Greek
  67. # is = Icelandic
  68. # it = Italian
  69. # iw = Hebrew
  70. # ja = Japanese
  71. # ko = Korean
  72. # no = Norwegian
  73. # pl = Polish
  74. # pt = Portuguese
  75. # br = Portuguese (Brazilian)
  76. # ro = Romanian
  77. # ru = Russian
  78. # sl = Slovenian
  79. # es = Spanish
  80. # sv = Swedish
  81. # tr = Turkish
  82. # The short-form code (e.g. = en) is used to set the language.
  83. # Default: empty (""), which means PMS will follow the locale.
  84. language =
  85.  
  86. # Operating Mode
  87. # --------------
  88. # GUI Option: Start Minimized (toggle)
  89. # Sets whether the GUI should start when the program is launched.
  90. # On headless systems, this should be "true".
  91. # Default: false.
  92. minimized = "true"
  93.  
  94. # Check for updates
  95. # -----------------
  96. # GUI Option: Check automatically (toggle)
  97. # Default: false.
  98. auto_update =
  99.  
  100. # ---< Network Settings >-----------------------------------------------------
  101. # Generally these settings should not need to be changed from their defaults or
  102. # settings determined automatically by the system. Changing them may make your
  103. # PMS server disappear from your other devices.
  104.  
  105. # Interface
  106. # ---------
  107. # GUI Option: Force networking on interface (selector)
  108. # Specifies the (physical) network interface to attach to, should only be
  109. # relevant when the server has more than one network interface and PMS picks
  110. # the wrong one. The selector displays all available network interfaces.
  111. # E.g. network_interface = eth0
  112. # Default: empty, which means PMS will automatically select a network
  113. # interface.
  114. network_interface =
  115.  
  116. # Specifies a comma separated list of network interfaces to ignore when
  117. # scanning for a suitable network interface to attach to. This is typically
  118. # used to ignore virtual interfaces created by other applications.
  119. # Default: "tap,vmnet,vnic", which ignores interfaces named "tap0",
  120. # "tap1" and "tap2", but it allows an interface named "eth0".
  121. skip_network_interfaces =
  122.  
  123. # IP Address
  124. # ----------
  125. # GUI Option: Force IP of the server (string)
  126. # A network interface can be have multiple IP addresses associated with it.
  127. # This sets which one should be used.
  128. # Default: empty, which means PMS will automatically select an IP
  129. # address.
  130. hostname =
  131.  
  132. # Server port
  133. # -----------
  134. # GUI Option: Force the port of the server (string)
  135. # Sets the port PMS will listen on; usually should not need to be set unless
  136. # another service has already grabbed the port.
  137. # Default: empty, which means PMS will automatically pick port 5001.
  138. port =
  139.  
  140. # Client Filter
  141. # -------------
  142. # GUI Option: Use an IP filter (string)
  143. # Set the IP address(es) and/or IP address range(s) of the clients permitted to connect.
  144. # When no filter is specified, PMS will allow any IP address to connect to the
  145. # service.
  146. # Multiple IP addresses and/or IP address ranges can be separated with a comma
  147. # or semicolon e.g.: 127.0.0.1,192.168.0-1.*
  148. # Default: empty.
  149. ip_filter =
  150.  
  151. # Max Bandwidth
  152. # -------------
  153. # GUI Option: Maximum bandwidth in Mb/s (string)
  154. # Set the maximum bandwidth to be consumed by the server.
  155. # Leaving the setting blank or zero switches off bandwidth throttling.
  156. # Default: 0.
  157. maximumbitrate =
  158.  
  159. # ---< Advanced HTTP and system settings >------------------------------------
  160.  
  161. # HTTP Engine v2
  162. # --------------
  163. # GUI Option: HTTP Engine v2 (toggle)
  164. # Default: true.
  165. http_engine_v2 =
  166.  
  167. # Do not sleep
  168. # ------------
  169. # GUI Option: Prevent OS from sleeping while streaming (toggle)
  170. # If your host server has a power-saving mode, use this option to prevent
  171. # the server hibernating or sleeping while it is streaming data.
  172. # Default: false.
  173. prevents_sleep_mode = true
  174.  
  175. # GUI Option: Default renderer when automatic detection fails (selector)
  176. # PMS can recognize many renderers automatically. Sometimes a renderer will
  177. # connect which PMS does not recognize. This option defines which renderer PMS
  178. # should assume.
  179. # Default: empty, which means PMS will assume the "Unknown renderer".
  180. renderer_default =
  181.  
  182. # GUI Option: Force default renderer (disable automatic detection) (toggle)
  183. # By default PMS tries to automatically detect what renderers try to connect
  184. # to it. By settings this option to true, PMS will assume any renderer that
  185. # connects is the default renderer.
  186. # Default: false
  187. renderer_force_default =
  188.  
  189. # ---< Plugins >--------------------------------------------------------------
  190.  
  191. # The directory where PMS can find the plugins.
  192. # Default: "plugins".
  193. plugins =
  194.  
  195. # ----------------------------------------------------------------------------
  196. # Navigation/Share Settings Screen
  197. # ----------------------------------------------------------------------------
  198.  
  199. # ---< Thumbnails >-----------------------------------------------------------
  200.  
  201. # Generate Thumbnails
  202. # -------------------
  203. # GUI Option: Generate Thumbnails
  204. # Set whether or not to generate thumbnails of media files for the client.
  205. # Default: true.
  206. thumbnails =
  207.  
  208. # Thumbnail seeking position
  209. # --------------------------
  210. # GUI Option: Thumbnail seeking position (string)
  211. # Amount of time (in seconds) to skip in video media before generating
  212. # thumbnail data, designed to pass over usual black screen before movies
  213. # start.
  214. # Default: 60 seconds.
  215. thumbnail_seek_pos =
  216.  
  217. # Use MPlayer for Thumbnails
  218. # --------------------------
  219. # GUI Option: Use MPlayer for video thumbnails (toggle)
  220. # Whether or not to use MPlayer to generate the thumbnails for video;
  221. # can produce better results than built-in method.
  222. # Default: false, which will use the built-in method.
  223. use_mplayer_for_video_thumbs = true
  224.  
  225. # DVD thumbnails
  226. # --------------
  227. # GUI Option: DVD ISO thumbnails (toggle)
  228. # Choose whether or not to show thumbnails of ISO images.
  229. # Default: false.
  230. dvd_isos_thumbnails =
  231.  
  232. # Image thumbnails
  233. # --------------
  234. # GUI Option: Image thumbnails (toggle)
  235. # Choose whether or not to show thumbnails of images.
  236. # Default: true.
  237. image_thumbnails =
  238.  
  239. # Album cover art
  240. # ---------------
  241. # GUI Option: Audio thumbnails display (selector)
  242. # Choose how to get thumbnails for audio files (cover art), value is a
  243. # number from the following list (equivalent to GUI dropdown order):
  244. # 0 - Alphabetical (A-Z) - search local filesystem
  245. # 1 - download from Amazon
  246. # 2 - download from Discogs
  247. # Default: 0.
  248. audio_thumbnails_method =
  249.  
  250. # Source of video cover art
  251. # -------------------------
  252. # GUI Option: Alternate video cover art folder (selector)
  253. # Specify a folder below which appropriate cover art for videos might be
  254. # located. Providing no value (default) effectively disables video thumbnails.
  255. # The GUI offers a file-system navigator which generates an absolute path.
  256. # Default: empty.
  257. alternate_thumb_folder =
  258.  
  259. # ---< Navigation/Parsing settings >------------------------------------------
  260. # Instructs the system on how to find media and various controls on giving
  261. # clients access to transcoding facilities and features.
  262.  
  263. # Compressed Archives
  264. # -------------------
  265. # GUI Option: Browse compressed archives (toggle)
  266. # Should the system browse compressed files looking for media? Files are
  267. # extracted only when selected for viewing.
  268. # Supported formats: cbr, cbz, rar and zip.
  269. # Default: false.
  270. enable_archive_browsing =
  271.  
  272. # Hide Video settings
  273. # -------------------
  274. # GUI Option: Hide Video settings (toggle)
  275. # Control visibility of the Video Settings folder on clients; contents
  276. # of the folder allow direct editing of PMS settings for video.
  277. # Default: false.
  278. hidevideosettings =
  279.  
  280. # Hide Transcode folder
  281. # ---------------------
  282. # GUI Option: Hide Transcode folder (toggle)
  283. # Control visibility of the Transcode folder on clients; contents of the
  284. # folder provide control over transcoding of video.
  285. # Default: false.
  286. hide_transcode_folder =
  287.  
  288. # Transcode Folder Name
  289. # ---------------------
  290. # Assign a different name to the #--TRANSCODE--# folder e.g. "Subtitles" or "Languages".
  291. # Default: the localized version of "#--TRANSCODE--#".
  292. transcode_folder_name =
  293.  
  294. # Hide file extensions
  295. # --------------------
  296. # GUI Option: Hide file extensions (toggle)
  297. # Choose whether or not to show file extensions when showing file name in
  298. # client listings.
  299. # Default: false.
  300. hide_extensions =
  301.  
  302. # Hide engine names
  303. # -----------------
  304. # GUI Option: Hide engine names (toggle)
  305. # Choose whether or not to show transcoding engine names for video; see
  306. # also "Hide Transcode Folder" setting.
  307. # Default: false.
  308. hide_enginenames =
  309.  
  310. # Hide non-media folders
  311. # ----------------------
  312. # GUI Option: Hide non-media folders (toggle)
  313. # Choose whether or not to show folders which contain no viewable content.
  314. # Switching this on can slow down browsing in the client (folders must be checked
  315. # for content first before showing them); using a cache (see below) can help.
  316. # Default: false.
  317. hide_empty_folders =
  318.  
  319. # Show iTunes library
  320. # -------------------
  321. # GUI Option: Show iTunes library (toggle)
  322. # Choose whether or not to show the iTunes library as a folder in PMS.
  323. # Default: false.
  324. itunes =
  325.  
  326. # Show iPhoto library
  327. # -------------------
  328. # GUI Option: Show iPhoto library (toggle)
  329. # Choose whether or not to show the iPhoto library as a folder in PMS.
  330. # Default: false.
  331. iphoto =
  332.  
  333. # Show Aperture library
  334. # ---------------------
  335. # GUI Option: Show aperture library (toggle)
  336. # Choose whether or not to show the Aperture library as a folder in PMS.
  337. # Default: false.
  338. aperture =
  339.  
  340. # Enable cache
  341. # ------------
  342. # GUI Option: Enable cache (toggle)
  343. # Without a cache, when the client browses a folder, content is listed in
  344. # real-time. With a cache, additional information becomes available and
  345. # the cache can be browsed directly.
  346. # Default: false.
  347. usecache = true
  348.  
  349. # Hide cache folder
  350. # -----------------
  351. # GUI Option: Hide cache folder (toggle)
  352. # Controls whether or not the cache can be browsed directly by the client.
  353. # Default: false.
  354. hide_media_library_folder =
  355.  
  356. # File ordering
  357. # -------------
  358. # GUI Option: File ordering (selector)
  359. # Determines the order of listed content when a client browses a folder; the
  360. # GUI selector generates a numeric indicator according to the following.
  361. # 0 - Alphabetical A-Z
  362. # 1 - By date (newest first)
  363. # 2 - By reverse date (oldest first)
  364. # 3 - ASCIIbetical (i.e. using ASCII code values)
  365. # 4 - Alphanumeric (AKA natural sort e.g. "Season 2" before "Season 10")
  366. # Default: 4.
  367. key_sort_method =
  368.  
  369. # ---< Shared folders >-------------------------------------------------------
  370.  
  371. # Media Locations
  372. # ---------------
  373. # GUI Option: Shared folders dialogue (list)
  374. # Either define a list of specific folders containing media to be shared or
  375. # allow the system to browse the whole disk of the server. The GUI provides
  376. # a system navigation to generate a list of folders.
  377. # The list should contain a comma-separated list of absolute path names, or
  378. # leave it empty to let the system find media.
  379. # Default: empty.
  380. folders =/media/wd/Movies,/media/wd/TV\ Shows,/media/wd/Torrents/Downloads,/media/wd/Music,/media/wd/Osho
  381.  
  382.  
  383. # ----------------------------------------------------------------------------
  384. # Transcoder Settings
  385. # ----------------------------------------------------------------------------
  386.  
  387. # Transcoder engines
  388. # GUI Option: Ordered list of engines (selector)
  389. # System generates list of available engines, list depends on host.
  390. # Default: "mencoder,avsmencoder,tsmuxer,ffmpegvideo,ffmpegaudio,mplayeraudio,tsmuxeraudio,ffmpegwebvideo,vlcvideo,mencoderwebvideo,mplayervideodump,mplayerwebaudio,vlcaudio,ffmpegdvrmsremux,rawthumbs"
  391. engines = tsmuxer,mencoder,ffmpegvideo,ffmpegaudio,mplayeraudio,tsmuxeraudio,ffmpegwebvideo,vlcvideo,mencoderwebvideo,mplayervideodump,mplayerwebaudio,vlcaudio,rawthumbs
  392.  
  393. # ----------------------------------------------------------------------------
  394. # Transcoding Settings: Common settings
  395. # ----------------------------------------------------------------------------
  396.  
  397. # Transcode buffer size
  398. # ---------------------
  399. # GUI Option: Transcode buffer maximum size (string)
  400. # Size of buffer in MB before transmitting to client. Maximum value is 400.
  401. # Default: 400.
  402. maxvideobuffer =
  403.  
  404. # Cores for Transcoding
  405. # ---------------------
  406. # GUI Option: Number of cores for transcoding (selector)
  407. # Choose the number of processor cores that should be used for transcoding.
  408. # Default: empty, which will make PMS figure this out itself.
  409. nbcores =
  410.  
  411. # Chapters #--TRANSCODE--# folder support
  412. # -----------------------------------
  413. # GUI Option: Chapters #--TRANSCODE--# folder support (toggle)
  414. # Makes PMS create virtual chapter markers in a video file. These let
  415. # you jump to a specific point in a video.
  416. # Default: false.
  417. chapter_support =
  418.  
  419. # Chapters #--TRANSCODE--# folder support interval
  420. # --------------------------------------------
  421. # GUI Option: Chapters #--TRANSCODE--# folder support interval (string)
  422. # Determines the interval time in minutes for virtual chapter markers.
  423. # Default: 5.
  424. chapter_interval =
  425.  
  426.  
  427. # ---< Audio settings >-------------------------------------------------------
  428.  
  429. # PS3 Media Server decides what to do with the audio track by checking options in the following order:
  430. # 1. (AC3 and DTS tracks) Keep DTS track / Keep AC3 track => remuxes track as-is
  431. # 2. (all tracks) Use LPCM transcoding => transcodes track with LPCM transport (lossless)
  432. # 3. (all tracks) Use AC3 transcoding => transcodes track with AC3 transport (lossy)
  433.  
  434. # AC3 transcoding audio channels
  435. # --------------
  436. # GUI Option: Maximum audio channels (selector)
  437. # The maximum number of channels used for AC3 transcoding.
  438. # Do not change this value even if you use 2.0 speakers because of an MEncoder downmixing bug!
  439. # Default: 6.
  440. audiochannels =
  441.  
  442. # AC3 transcoding audio bitrate
  443. # -----------------
  444. # GUI Option: AC3 re-encoding audio bitrate (string)
  445. # Specify the bitrate for AC3 transcoding; do not exceed the quality supported by the
  446. # AV receiver or amplifier.
  447. # Default: 640.
  448. audiobitrate =
  449.  
  450. # Keep AC3 track
  451. # ---------------
  452. # GUI Option: Keep AC3 track (no re-encode, may cause inaudible dialog and A/V sync issues) (toggle)
  453. # Default: true.
  454. mencoder_remux_ac3 =
  455.  
  456. # Keep DTS track
  457. # ------------------
  458. # GUI Option: Keep DTS track (no re-encode, compatible with AV receiver through optical or HDMI output) (toggle)
  459. # Default: false.
  460. embed_dts_in_pcm = true
  461.  
  462. # Use LPCM for audio
  463. # ---------------------------
  464. # GUI Option: Use LPCM for audio (no re-encode) (toggle)
  465. # Choose whether or not the Pulse Code Modulation (PCM) audio format should be
  466. # used instead of AC3 with the MEncoder transcoding engine. Offers lossless transcoding quality but higher bitrate.
  467. # Bandwidth requirements are about 1.5 Mbit/s for 2.0 and 4.6 Mbit/s for 5.1 audio.
  468. # Not suitable for Wi-Fi streaming!
  469. # Default: false.
  470. mencoder_usepcm =
  471.  
  472. # Use LPCM only for HQ audio
  473. # ---------------------------
  474. # GUI Option: none
  475. # Limit LPCM audio transcoding to high quality audio tracks (DTS, TrueHD, etc) only. Use AC3
  476. # transcoding for others.
  477. # Default: false.
  478. mencoder_usepcm_for_hq_audio_only =
  479.  
  480. # Remux DVD
  481. # ---------
  482. # GUI Option: Remux DVD ISO video track (toggle)
  483. # Default: true.
  484. mencoder_remux_mpeg2 =
  485.  
  486. # ---< Video quality settings >-----------------------------------------------
  487.  
  488. # MPEG-2 options
  489. # --------------
  490. # GUI Option: MPEG-2 options (string)
  491. # Sets the quality for MPEG-2 conversion; MPEG-2 is the fallback format if the client
  492. # does not support a video format natively.
  493. # Default: "keyint=5:vqscale=1:vqmin=2"
  494. mencoder_encode = keyint=2:vqscale=1:vqmin=2
  495.  
  496. # ---< Misc options >---------------------------------------------------------
  497.  
  498. # Definitely disable subtitles
  499. # ---------------------------
  500. # GUI Option: Definitely disable subtitles (toggle)
  501. # Default: false.
  502. mencoder_disablesubs =
  503.  
  504. # Skip transcode for extensions
  505. # -----------------------------
  506. # GUI Option: Skip transcode for extensions (list)
  507. # Do not transcode files with an extension in the list.
  508. # Default: empty.
  509. notranscode =
  510.  
  511.  
  512. # Force transcode for extensions
  513. # ------------------------------
  514. # GUI Option: Force transcode for extensions (list)
  515. # Always transcode file with an extension in the list.
  516. # Default: empty.
  517. forcetranscode =
  518.  
  519. # ----------------------------------------------------------------------------
  520. # Transcoder Settings: MEncoder
  521. # ----------------------------------------------------------------------------
  522.  
  523. # ---< Video/Audio decoder settings for MEncoder engine >---------------------
  524.  
  525. # Use Multiple cores
  526. # ------------------
  527. # GUI Option: Use multiple CPU cores (toggle)
  528. # Choose whether or not to use the multicore variant of MEncoder.
  529. # Default: empty, which lets PMS figure this out itself.
  530. mencoder_mt =
  531.  
  532. # Skip loop filter
  533. # ----------------
  534. # GUI Option: Skip loop filter
  535. # Default: false.
  536. skiploopfilter =
  537.  
  538. # A/V sync alternative true
  539. # -------------------------
  540. # GUI Option: A/V sync alternative
  541. # Default: true.
  542. mencoder_nooutofsync =
  543.  
  544. # Use Video Scaler
  545. # ----------------
  546. # GUI Option: Use Video Scaler
  547. # Default: false.
  548. mencoder_scaler =
  549. # GUI Option: Video scaler width
  550. # Default: 0.
  551. mencoder_scalex =
  552. # GUI Option: Video scaler height
  553. # Default: 0.
  554. mencoder_scaley =
  555.  
  556. # Force framerate
  557. # ---------------
  558. # GUI Option: Force framerate
  559. # Default: false.
  560. mencoder_forcefps =
  561.  
  562. # Deinterlace filter
  563. # ------------------
  564. # GUI Option: Deinterlace filter
  565. # Default: false.
  566. mencoder_yadif =
  567.  
  568. # Remux videos
  569. # ------------
  570. # GUI Option: Remux videos
  571. # Default: true.
  572. mencoder_mux_compatible = false
  573.  
  574. # Codec specific parameters
  575. # -------------------------
  576. # GUI Option : Use application default codec parms
  577. # Default: true.
  578. mencoder_intelligent_sync =
  579.  
  580. # GUI Option: Codec specific parameters (text)
  581. # Sets additional codec-specific configuration options for MEncoder.
  582. # Default: empty.
  583. codec_spec_script =
  584.  
  585. # ---< Specific options >-----------------------------------------------------
  586.  
  587. # Custom options
  588. # --------------
  589. # GUI Option: Custom options (string)
  590. # Default: empty.
  591. mencoder_decode =
  592.  
  593. # Audio language priority
  594. # -----------------------
  595. # GUI Option: Audio language priority (list)
  596. # A comma-separated list of language codes that defines the priority for
  597. # MEncoder when choosing audio languages, where "und" stands for "undefined".
  598. # XXX Can be empty, which pre-empts the default value.
  599. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  600.  
  601. # mencoder_audiolangs =
  602.  
  603. # ---< Subtitle settings >----------------------------------------------------
  604.  
  605. # Subtitle language priority
  606. # --------------------------
  607. # GUI Option: Subtitle language priority (list)
  608. # A comma-separated list of language codes that defines the priority for
  609. # MEncoder when choosing subtitle languages, where "und" stands for "undefined".
  610. # XXX Can be empty, which pre-empts the default value.
  611. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  612.  
  613. # mencoder_sublangs =
  614.  
  615. # Force subtitle language
  616. # -----------------------
  617. # GUI Option: Force subtitle language (string)
  618. # XXX Can be empty, which pre-empts the default value.
  619. # Default: the value of the language option, or "en".
  620.  
  621. # forced_sub_lang =
  622.  
  623. # Forced tags
  624. # -----------
  625. # GUI Option: Forced tags (string)
  626. # The tag string that identifies the subtitle language that will be forced
  627. # upon MEncoder.
  628. # Default: "forced".
  629. forced_sub_tags =
  630.  
  631. # Audio language priority
  632. # -----------------------
  633. # GUI Option: Audio language priority (string)
  634. # Determine the string of audio language and subtitle language pairs
  635. # ordered by priority for MEncoder to try to match. Audio language and
  636. # subtitle language should be comma separated as a pair; individual pairs
  637. # should be semicolon separated. "*" can be used to match any language.
  638. # Subtitle language can be defined as "off" (e.g. "jpn,off;*,*").
  639. # XXX Can be empty, which pre-empts the default value.
  640. # Default: a localized list (usually "*,*").
  641.  
  642. # mencoder_audiosublangs =
  643.  
  644. # Codepage for non-Unicode subtitles
  645. # ------------------
  646. # GUI Option: Codepage for non-Unicode subtitles (string)
  647. # The character encoding (or code page) that MEncoder should use for
  648. # non-Unicode external subtitles.
  649. # Default: empty (autodetect, do not force encoding with -subcp key).
  650. mencoder_subcp =
  651.  
  652. # FriBiDi
  653. # -------
  654. # GUI Option: FriBiDi (toggle)
  655. # Determine whether or not MEncoder should use FriBiDi mode, which is
  656. # needed to display subtitles in languages that read from right to left,
  657. # like Arabic, Farsi, Hebrew, Urdu, etc.
  658. # Default: false.
  659. mencoder_subfribidi =
  660.  
  661. # Subtitle font blank
  662. # -------------------
  663. # GUI Option: Subtitle font (string)
  664. # GUI offers a navigator to a folder generating an absolute path.
  665. # Default: empty.
  666. mencoder_font = Ubuntu
  667.  
  668. # Subtitles folder blank
  669. # ----------------------
  670. # GUI Option: Subtitles folder (string)
  671. # GUI offers a navigator to a folder generating an absolute path.
  672. # Default: empty.
  673. alternate_subs_folder =
  674.  
  675. # Use ASS/SSA styling
  676. # -------------------
  677. # GUI Option: Use ASS/SSA styling (toggle)
  678. # Choose whether or not MEncoder supports ASS/SSA subtitles.
  679. # Default: true for Windows and Mac OS X, false otherwise.
  680. mencoder_ass =
  681.  
  682. # Enable MEncoder fontconfig support
  683. # -------------
  684. # GUI Option: Fontconfig/Embedded fonts (toggle)
  685. # Default: true.
  686. mencoder_fontconfig =
  687.  
  688. # Use embedded style
  689. # ------------------
  690. # GUI Option: Use embedded style (toggle)
  691. # Default: true.
  692. mencoder_ass_defaultstyle =
  693.  
  694. # Subtitle colour
  695. # ---------------
  696. # GUI Option: Subtitle colour (string)
  697. # The integer value for the subtitle colour. GUI offers a palette to choose
  698. # from that will generate a number. Default is empty, causing PMS to pick
  699. # white.
  700. # Default: empty.
  701. subs_color = -1
  702.  
  703. # Style font scale
  704. # ----------------
  705. # GUI Option: Style font scale
  706. # The font scale used for ASS subtitling.
  707. # Default: 1.0.
  708. mencoder_ass_scale =
  709.  
  710. # GUI Option: Styled font outline
  711. # The outline parameter used for ASS subtitling.
  712. # Default: 1.
  713. mencoder_ass_outline = 2
  714.  
  715. # GUI Option: Styled font shadow
  716. # The shadow parameter used for ASS subtitling.
  717. # Default: 1.
  718. mencoder_ass_shadow = 0
  719.  
  720. # GUI Option: Styled margin
  721. # The margin used for ASS subtitling.
  722. # Default: 10.
  723. mencoder_ass_margin = 40
  724.  
  725. # Plain font scale
  726. # ----------------
  727. # GUI Option: Plain font scale
  728. # The subfont text scale parameter used for subtitling without ASS.
  729. # Default: 3.
  730. mencoder_noass_scale =
  731.  
  732. # GUI Option: Plain font outline
  733. # The subfont outline parameter used for subtitling without ASS.
  734. # Default: 1.
  735. mencoder_noass_outline = 4
  736.  
  737. # GUI Option: Plain font blur
  738. # The subfont blur parameter used for subtitling without ASS.
  739. # Default: 1.
  740. mencoder_noass_blur =
  741.  
  742. # GUI Option: Plain margin
  743. # The subpos parameter used for subtitling without ASS.
  744. # Default: 2.
  745. mencoder_noass_subpos = 13
  746.  
  747. # Load subtitles
  748. # --------------
  749. # GUI Option: Load subtitles
  750. # Choose whether PMS should check for external subtitle files with the same
  751. # name as the media (*.srt, *.sub, *.ass, etc.).
  752. # Default: true.
  753. autoloadsrt =
  754.  
  755. # DVD/VOB subtitle quality
  756. # ------------------------
  757. # GUI Option: DVD/VOB subtitle quality
  758. # Default: 3.
  759. mencoder_vobsub_subtitle_quality = 4
  760.  
  761. # Add borders
  762. # -----------
  763. # GUI Option: width
  764. # Default: 0.
  765. mencoder_overscan_compensation_width =
  766.  
  767. # GUI Option: height
  768. # Default: 0.
  769. mencoder_overscan_compensation_height =
  770.  
  771. # ----------------------------------------------------------------------------
  772. # Transcoder Settings: Video decoder for tsMuxeR
  773. # ----------------------------------------------------------------------------
  774.  
  775. # Force FPS from FFmpeg
  776. # ---------------------
  777. # GUI Option: Force FPS pased from FFmpeg in the meta file
  778. # Default: true.
  779. tsmuxer_forcefps =
  780.  
  781. # Mux all audio
  782. # -------------
  783. # GUI Option: Mux all audio tracks
  784. # Default: false.
  785. tsmuxer_mux_all_audiotracks =
  786.  
  787. # Audio resampling
  788. # ----------------
  789. # GUI Option: Automatic audio resampling (toggle)
  790. # Default: true.
  791. audio_resample =
  792.  
  793. # ============================================================================
  794. # Additional settings
  795.  
  796. # ---< Active - but not settable in GUI >-------------------------------------
  797.  
  798. # Default: 850.
  799. charsetencoding =
  800.  
  801. # Set to "true" if PMS should pass the flag "convertfps=true" to AviSynth.
  802. # Default: true.
  803. avisynth_convertfps =
  804.  
  805. # The template for the AviSynth script. The script string may contain the
  806. # character "\u0001", which will be treated as newline character.
  807. avisynth_script =
  808.  
  809. # Default: false.
  810. transcode_block_multiple_connections =
  811.  
  812. # Default: true.
  813. transcode_keep_first_connection =
  814.  
  815. # Default: "-threads 2 -g 1 -qscale 1 -qmin 2"
  816. ffmpeg =
  817.  
  818. # The maximum size (in MB) that PMS should use for buffering audio.
  819. # Default: 100.
  820. maxaudiobuffer =
  821.  
  822. # The minimum size (in MB) that PMS should use for the streaming media buffer.
  823. # Default: 1.
  824. minwebbuffer =
  825.  
  826. # ---< Old deprecated options >-----------------------------------------------
  827. # turbomode = false
  828. # tsmuxer_preremix_ac3 = false
  829.  
  830. # ---< Binary tools paths >------------------------------------------
  831. # Path to mencoder (absolute or relative from project.binaries.dir)
  832. # Default: Win: win32/mencoder.exe Mac: osx/mencoder Linux: mencoder + system PATH
  833. mencoder_path = /usr/lib/ps3mediaserver/linux/mencoder
  834.  
  835. # Path to ffmpeg (absolute or relative from project.binaries.dir)
  836. # Default: Win: win32/ffmpeg.exe Mac: osx/ffmpeg Linux: ffmpeg + system PATH
  837. ffmpeg_path = /usr/lib/ps3mediaserver/linux/ffmpeg
  838.  
  839. # Path to mplayer (absolute or relative from project.binaries.dir)
  840. # Default: Win: win32/mplayer.exe Mac: osx/mplayer Linux: mplayer + system PATH
  841. mplayer_path = /usr/lib/ps3mediaserver/linux/mplayer
  842.  
  843. # Path to tsMuxeR (absolute or relative from project.binaries.dir)
  844. # Default: Win: win32/tsMuxeR.exe Mac: osx/tsMuxeR Linux: tsMuxeR + system PATH
  845. tsmuxer_path = /usr/lib/ps3mediaserver/linux/tsMuxeR
  846.  
  847. # Path to dcraw (absolute or relative from project.binaries.dir)
  848. # Default: Win: win32/dcrawMS.exe Mac: osx/dcraw Linux: dcraw + system PATH
  849. dcraw_path = /usr/lib/ps3mediaserver/linux/dcraw
  850.  
  851. # Path to FLAC (absolute or relative from project.binaries.dir)
  852. # Default: Win: win32/flac.exe Mac: osx/flac Linux: flac + system PATH
  853. flac_path =
  854.  
  855. # Path to eac3to (absolute or relative from project.binaries.dir)
  856. # Default: Win: win32/eac3to/eac3to.exe
  857. eac3to_path =
  858.  
  859. # Path to VideoLAN (absolute or relative from project.binaries.dir)
  860. # Default: Win: videolan/vlc.exe Mac: /Applications/VLC.app/Contents/MacOS/VLC Linux: vlc + system PATH
  861. vlc_path =
  862.  
  863. # Path to convert (absolute or relative from project.binaries.dir)
  864. # Default: Win: win32/convert.exe Mac: osx/convert Linux: convert + system PATH
  865. imconvert_path =
  866. uuid = df76b533-ca0a-3195-8d60-e0f743f662f9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement