Advertisement
Guest User

debug.log

a guest
Nov 20th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.84 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 = "Valler Media 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 =
  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 = true
  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 = true
  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 = true
  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 = true
  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 =
  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 = true
  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 = /home/rossvaller/media/
  381.  
  382. # ----------------------------------------------------------------------------
  383. # Transcoder Settings
  384. # ----------------------------------------------------------------------------
  385.  
  386. # Transcoder engines
  387. # GUI Option: Ordered list of engines (selector)
  388. # System generates list of available engines, list depends on host.
  389. # Default: "mencoder,avsmencoder,tsmuxer,ffmpegvideo,ffmpegaudio,mplayeraudio,tsmuxeraudio,ffmpegwebvideo,vlcvideo,mencoderwebvideo,mplayervideodump,mplayerwebaudio,vlcaudio,ffmpegdvrmsremux,rawthumbs"
  390. engines = tsmuxer,mencoder,ffmpegvideo,ffmpegaudio,mplayeraudio,tsmuxeraudio,ffmpegwebvideo,vlcvideo,mencoderwebvideo,mplayervideodump,mplayerwebaudio,vlcaudio,rawthumbs
  391.  
  392. # ----------------------------------------------------------------------------
  393. # Transcoding Settings: Common settings
  394. # ----------------------------------------------------------------------------
  395.  
  396. # Transcode buffer size
  397. # ---------------------
  398. # GUI Option: Transcode buffer maximum size (string)
  399. # Size of buffer in MB before transmitting to client. Maximum value is 400.
  400. # Default: 400.
  401. maxvideobuffer =
  402.  
  403. # Cores for Transcoding
  404. # ---------------------
  405. # GUI Option: Number of cores for transcoding (selector)
  406. # Choose the number of processor cores that should be used for transcoding.
  407. # Default: empty, which will make PMS figure this out itself.
  408. nbcores =
  409.  
  410. # Chapters #--TRANSCODE--# folder support
  411. # -----------------------------------
  412. # GUI Option: Chapters #--TRANSCODE--# folder support (toggle)
  413. # Makes PMS create virtual chapter markers in a video file. These let
  414. # you jump to a specific point in a video.
  415. # Default: false.
  416. chapter_support =
  417.  
  418. # Chapters #--TRANSCODE--# folder support interval
  419. # --------------------------------------------
  420. # GUI Option: Chapters #--TRANSCODE--# folder support interval (string)
  421. # Determines the interval time in minutes for virtual chapter markers.
  422. # Default: 5.
  423. chapter_interval =
  424.  
  425.  
  426. # ---< Audio settings >-------------------------------------------------------
  427.  
  428. # PS3 Media Server decides what to do with the audio track by checking options in the following order:
  429. # 1. (AC3 and DTS tracks) Keep DTS track / Keep AC3 track => remuxes track as-is
  430. # 2. (all tracks) Use LPCM transcoding => transcodes track with LPCM transport (lossless)
  431. # 3. (all tracks) Use AC3 transcoding => transcodes track with AC3 transport (lossy)
  432.  
  433. # AC3 transcoding audio channels
  434. # --------------
  435. # GUI Option: Maximum audio channels (selector)
  436. # The maximum number of channels used for AC3 transcoding.
  437. # Do not change this value even if you use 2.0 speakers because of an MEncoder downmixing bug!
  438. # Default: 6.
  439. audiochannels =
  440.  
  441. # AC3 transcoding audio bitrate
  442. # -----------------
  443. # GUI Option: AC3 re-encoding audio bitrate (string)
  444. # Specify the bitrate for AC3 transcoding; do not exceed the quality supported by the
  445. # AV receiver or amplifier.
  446. # Default: 640.
  447. audiobitrate =
  448.  
  449. # Keep AC3 track
  450. # ---------------
  451. # GUI Option: Keep AC3 track (no re-encode, may cause inaudible dialog and A/V sync issues) (toggle)
  452. # Default: true.
  453. mencoder_remux_ac3 =
  454.  
  455. # Keep DTS track
  456. # ------------------
  457. # GUI Option: Keep DTS track (no re-encode, compatible with AV receiver through optical or HDMI output) (toggle)
  458. # Default: false.
  459. embed_dts_in_pcm = true
  460.  
  461. # Use LPCM for audio
  462. # ---------------------------
  463. # GUI Option: Use LPCM for audio (no re-encode) (toggle)
  464. # Choose whether or not the Pulse Code Modulation (PCM) audio format should be
  465. # used instead of AC3 with the MEncoder transcoding engine. Offers lossless transcoding quality but higher bitrate.
  466. # Bandwidth requirements are about 1.5 Mbit/s for 2.0 and 4.6 Mbit/s for 5.1 audio.
  467. # Not suitable for Wi-Fi streaming!
  468. # Default: false.
  469. mencoder_usepcm =
  470.  
  471. # Use LPCM only for HQ audio
  472. # ---------------------------
  473. # GUI Option: none
  474. # Limit LPCM audio transcoding to high quality audio tracks (DTS, TrueHD, etc) only. Use AC3
  475. # transcoding for others.
  476. # Default: false.
  477. mencoder_usepcm_for_hq_audio_only =
  478.  
  479. # Remux DVD
  480. # ---------
  481. # GUI Option: Remux DVD ISO video track (toggle)
  482. # Default: true.
  483. mencoder_remux_mpeg2 =
  484.  
  485. # ---< Video quality settings >-----------------------------------------------
  486.  
  487. # MPEG-2 options
  488. # --------------
  489. # GUI Option: MPEG-2 options (string)
  490. # Sets the quality for MPEG-2 conversion; MPEG-2 is the fallback format if the client
  491. # does not support a video format natively.
  492. # Default: "keyint=5:vqscale=1:vqmin=2"
  493. mencoder_encode = keyint=2:vqscale=1:vqmin=2
  494.  
  495. # ---< Misc options >---------------------------------------------------------
  496.  
  497. # Definitely disable subtitles
  498. # ---------------------------
  499. # GUI Option: Definitely disable subtitles (toggle)
  500. # Default: false.
  501. mencoder_disablesubs =
  502.  
  503. # Skip transcode for extensions
  504. # -----------------------------
  505. # GUI Option: Skip transcode for extensions (list)
  506. # Do not transcode files with an extension in the list.
  507. # Default: empty.
  508. notranscode =
  509.  
  510.  
  511. # Force transcode for extensions
  512. # ------------------------------
  513. # GUI Option: Force transcode for extensions (list)
  514. # Always transcode file with an extension in the list.
  515. # Default: empty.
  516. forcetranscode =
  517.  
  518. # ----------------------------------------------------------------------------
  519. # Transcoder Settings: MEncoder
  520. # ----------------------------------------------------------------------------
  521.  
  522. # ---< Video/Audio decoder settings for MEncoder engine >---------------------
  523.  
  524. # Use Multiple cores
  525. # ------------------
  526. # GUI Option: Use multiple CPU cores (toggle)
  527. # Choose whether or not to use the multicore variant of MEncoder.
  528. # Default: empty, which lets PMS figure this out itself.
  529. mencoder_mt =
  530.  
  531. # Skip loop filter
  532. # ----------------
  533. # GUI Option: Skip loop filter
  534. # Default: false.
  535. skiploopfilter =
  536.  
  537. # A/V sync alternative true
  538. # -------------------------
  539. # GUI Option: A/V sync alternative
  540. # Default: true.
  541. mencoder_nooutofsync =
  542.  
  543. # Use Video Scaler
  544. # ----------------
  545. # GUI Option: Use Video Scaler
  546. # Default: false.
  547. mencoder_scaler =
  548. # GUI Option: Video scaler width
  549. # Default: 0.
  550. mencoder_scalex =
  551. # GUI Option: Video scaler height
  552. # Default: 0.
  553. mencoder_scaley =
  554.  
  555. # Force framerate
  556. # ---------------
  557. # GUI Option: Force framerate
  558. # Default: false.
  559. mencoder_forcefps =
  560.  
  561. # Deinterlace filter
  562. # ------------------
  563. # GUI Option: Deinterlace filter
  564. # Default: false.
  565. mencoder_yadif =
  566.  
  567. # Remux videos
  568. # ------------
  569. # GUI Option: Remux videos
  570. # Default: true.
  571. mencoder_mux_compatible = false
  572.  
  573. # Codec specific parameters
  574. # -------------------------
  575. # GUI Option : Use application default codec parms
  576. # Default: true.
  577. mencoder_intelligent_sync =
  578.  
  579. # GUI Option: Codec specific parameters (text)
  580. # Sets additional codec-specific configuration options for MEncoder.
  581. # Default: empty.
  582. codec_spec_script =
  583.  
  584. # ---< Specific options >-----------------------------------------------------
  585.  
  586. # Custom options
  587. # --------------
  588. # GUI Option: Custom options (string)
  589. # Default: empty.
  590. mencoder_decode =
  591.  
  592. # Audio language priority
  593. # -----------------------
  594. # GUI Option: Audio language priority (list)
  595. # A comma-separated list of language codes that defines the priority for
  596. # MEncoder when choosing audio languages, where "und" stands for "undefined".
  597. # XXX Can be empty, which pre-empts the default value.
  598. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  599.  
  600. # mencoder_audiolangs =
  601.  
  602. # ---< Subtitle settings >----------------------------------------------------
  603.  
  604. # Subtitle language priority
  605. # --------------------------
  606. # GUI Option: Subtitle language priority (list)
  607. # A comma-separated list of language codes that defines the priority for
  608. # MEncoder when choosing subtitle languages, where "und" stands for "undefined".
  609. # XXX Can be empty, which pre-empts the default value.
  610. # Default: a localized list (e.g. "eng,fre,jpn,ger,und").
  611.  
  612. # mencoder_sublangs =
  613.  
  614. # Force subtitle language
  615. # -----------------------
  616. # GUI Option: Force subtitle language (string)
  617. # XXX Can be empty, which pre-empts the default value.
  618. # Default: the value of the language option, or "en".
  619.  
  620. # forced_sub_lang =
  621.  
  622. # Forced tags
  623. # -----------
  624. # GUI Option: Forced tags (string)
  625. # The tag string that identifies the subtitle language that will be forced
  626. # upon MEncoder.
  627. # Default: "forced".
  628. forced_sub_tags =
  629.  
  630. # Audio language priority
  631. # -----------------------
  632. # GUI Option: Audio language priority (string)
  633. # Determine the string of audio language and subtitle language pairs
  634. # ordered by priority for MEncoder to try to match. Audio language and
  635. # subtitle language should be comma separated as a pair; individual pairs
  636. # should be semicolon separated. "*" can be used to match any language.
  637. # Subtitle language can be defined as "off" (e.g. "jpn,off;*,*").
  638. # XXX Can be empty, which pre-empts the default value.
  639. # Default: a localized list (usually "*,*").
  640.  
  641. # mencoder_audiosublangs =
  642.  
  643. # Codepage for non-Unicode subtitles
  644. # ------------------
  645. # GUI Option: Codepage for non-Unicode subtitles (string)
  646. # The character encoding (or code page) that MEncoder should use for
  647. # non-Unicode external subtitles.
  648. # Default: empty (autodetect, do not force encoding with -subcp key).
  649. mencoder_subcp =
  650.  
  651. # FriBiDi
  652. # -------
  653. # GUI Option: FriBiDi (toggle)
  654. # Determine whether or not MEncoder should use FriBiDi mode, which is
  655. # needed to display subtitles in languages that read from right to left,
  656. # like Arabic, Farsi, Hebrew, Urdu, etc.
  657. # Default: false.
  658. mencoder_subfribidi =
  659.  
  660. # Subtitle font blank
  661. # -------------------
  662. # GUI Option: Subtitle font (string)
  663. # GUI offers a navigator to a folder generating an absolute path.
  664. # Default: empty.
  665. mencoder_font = Ubuntu
  666.  
  667. # Subtitles folder blank
  668. # ----------------------
  669. # GUI Option: Subtitles folder (string)
  670. # GUI offers a navigator to a folder generating an absolute path.
  671. # Default: empty.
  672. alternate_subs_folder =
  673.  
  674. # Use ASS/SSA styling
  675. # -------------------
  676. # GUI Option: Use ASS/SSA styling (toggle)
  677. # Choose whether or not MEncoder supports ASS/SSA subtitles.
  678. # Default: true for Windows and Mac OS X, false otherwise.
  679. mencoder_ass =
  680.  
  681. # Enable MEncoder fontconfig support
  682. # -------------
  683. # GUI Option: Fontconfig/Embedded fonts (toggle)
  684. # Default: true.
  685. mencoder_fontconfig =
  686.  
  687. # Use embedded style
  688. # ------------------
  689. # GUI Option: Use embedded style (toggle)
  690. # Default: true.
  691. mencoder_ass_defaultstyle =
  692.  
  693. # Subtitle colour
  694. # ---------------
  695. # GUI Option: Subtitle colour (string)
  696. # The integer value for the subtitle colour. GUI offers a palette to choose
  697. # from that will generate a number. Default is empty, causing PMS to pick
  698. # white.
  699. # Default: empty.
  700. subs_color = -1
  701.  
  702. # Style font scale
  703. # ----------------
  704. # GUI Option: Style font scale
  705. # The font scale used for ASS subtitling.
  706. # Default: 1.0.
  707. mencoder_ass_scale =
  708.  
  709. # GUI Option: Styled font outline
  710. # The outline parameter used for ASS subtitling.
  711. # Default: 1.
  712. mencoder_ass_outline = 2
  713.  
  714. # GUI Option: Styled font shadow
  715. # The shadow parameter used for ASS subtitling.
  716. # Default: 1.
  717. mencoder_ass_shadow = 0
  718.  
  719. # GUI Option: Styled margin
  720. # The margin used for ASS subtitling.
  721. # Default: 10.
  722. mencoder_ass_margin = 40
  723.  
  724. # Plain font scale
  725. # ----------------
  726. # GUI Option: Plain font scale
  727. # The subfont text scale parameter used for subtitling without ASS.
  728. # Default: 3.
  729. mencoder_noass_scale =
  730.  
  731. # GUI Option: Plain font outline
  732. # The subfont outline parameter used for subtitling without ASS.
  733. # Default: 1.
  734. mencoder_noass_outline = 4
  735.  
  736. # GUI Option: Plain font blur
  737. # The subfont blur parameter used for subtitling without ASS.
  738. # Default: 1.
  739. mencoder_noass_blur =
  740.  
  741. # GUI Option: Plain margin
  742. # The subpos parameter used for subtitling without ASS.
  743. # Default: 2.
  744. mencoder_noass_subpos = 13
  745.  
  746. # Load subtitles
  747. # --------------
  748. # GUI Option: Load subtitles
  749. # Choose whether PMS should check for external subtitle files with the same
  750. # name as the media (*.srt, *.sub, *.ass, etc.).
  751. # Default: true.
  752. autoloadsrt =
  753.  
  754. # DVD/VOB subtitle quality
  755. # ------------------------
  756. # GUI Option: DVD/VOB subtitle quality
  757. # Default: 3.
  758. mencoder_vobsub_subtitle_quality = 4
  759.  
  760. # Add borders
  761. # -----------
  762. # GUI Option: width
  763. # Default: 0.
  764. mencoder_overscan_compensation_width =
  765.  
  766. # GUI Option: height
  767. # Default: 0.
  768. mencoder_overscan_compensation_height =
  769.  
  770. # ----------------------------------------------------------------------------
  771. # Transcoder Settings: Video decoder for tsMuxeR
  772. # ----------------------------------------------------------------------------
  773.  
  774. # Force FPS from FFmpeg
  775. # ---------------------
  776. # GUI Option: Force FPS pased from FFmpeg in the meta file
  777. # Default: true.
  778. tsmuxer_forcefps =
  779.  
  780. # Mux all audio
  781. # -------------
  782. # GUI Option: Mux all audio tracks
  783. # Default: false.
  784. tsmuxer_mux_all_audiotracks =
  785.  
  786. # Audio resampling
  787. # ----------------
  788. # GUI Option: Automatic audio resampling (toggle)
  789. # Default: true.
  790. audio_resample =
  791.  
  792. # ============================================================================
  793. # Additional settings
  794.  
  795. # ---< Active - but not settable in GUI >-------------------------------------
  796.  
  797. # Default: 850.
  798. charsetencoding =
  799.  
  800. # Set to "true" if PMS should pass the flag "convertfps=true" to AviSynth.
  801. # Default: true.
  802. avisynth_convertfps =
  803.  
  804. # The template for the AviSynth script. The script string may contain the
  805. # character "\u0001", which will be treated as newline character.
  806. avisynth_script =
  807.  
  808. # Default: false.
  809. transcode_block_multiple_connections =
  810.  
  811. # Default: true.
  812. transcode_keep_first_connection =
  813.  
  814. # Default: "-threads 2 -g 1 -qscale 1 -qmin 2"
  815. ffmpeg =
  816.  
  817. # The maximum size (in MB) that PMS should use for buffering audio.
  818. # Default: 100.
  819. maxaudiobuffer =
  820.  
  821. # The minimum size (in MB) that PMS should use for the streaming media buffer.
  822. # Default: 1.
  823. minwebbuffer =
  824.  
  825. # ---< Old deprecated options >-----------------------------------------------
  826. # turbomode = false
  827. # tsmuxer_preremix_ac3 = false
  828.  
  829. # ---< Binary tools paths >------------------------------------------
  830. # Path to mencoder (absolute or relative from project.binaries.dir)
  831. # Default: Win: win32/mencoder.exe Mac: osx/mencoder Linux: mencoder + system PATH
  832. mencoder_path = /usr/lib/ps3mediaserver/linux/mencoder
  833.  
  834. # Path to ffmpeg (absolute or relative from project.binaries.dir)
  835. # Default: Win: win32/ffmpeg.exe Mac: osx/ffmpeg Linux: ffmpeg + system PATH
  836. ffmpeg_path = /usr/lib/ps3mediaserver/linux/ffmpeg
  837.  
  838. # Path to mplayer (absolute or relative from project.binaries.dir)
  839. # Default: Win: win32/mplayer.exe Mac: osx/mplayer Linux: mplayer + system PATH
  840. mplayer_path = /usr/lib/ps3mediaserver/linux/mplayer
  841.  
  842. # Path to tsMuxeR (absolute or relative from project.binaries.dir)
  843. # Default: Win: win32/tsMuxeR.exe Mac: osx/tsMuxeR Linux: tsMuxeR + system PATH
  844. tsmuxer_path = /usr/lib/ps3mediaserver/linux/tsMuxeR
  845.  
  846. # Path to dcraw (absolute or relative from project.binaries.dir)
  847. # Default: Win: win32/dcrawMS.exe Mac: osx/dcraw Linux: dcraw + system PATH
  848. dcraw_path = /usr/lib/ps3mediaserver/linux/dcraw
  849.  
  850. # Path to FLAC (absolute or relative from project.binaries.dir)
  851. # Default: Win: win32/flac.exe Mac: osx/flac Linux: flac + system PATH
  852. flac_path =
  853.  
  854. # Path to eac3to (absolute or relative from project.binaries.dir)
  855. # Default: Win: win32/eac3to/eac3to.exe
  856. eac3to_path =
  857.  
  858. # Path to VideoLAN (absolute or relative from project.binaries.dir)
  859. # Default: Win: videolan/vlc.exe Mac: /Applications/VLC.app/Contents/MacOS/VLC Linux: vlc + system PATH
  860. vlc_path =
  861.  
  862. # Path to convert (absolute or relative from project.binaries.dir)
  863. # Default: Win: win32/convert.exe Mac: osx/convert Linux: convert + system PATH
  864. imconvert_path =
  865. uuid = 0fb49067-2ec1-38f6-982a-06cef0ade074
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement