OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.6 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../vdr/mplayer.sh.conf
  5. # Copyright (C) 2008 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- SDE-COPYRIGHT-NOTE-END ---
  15. # Config File for mplayer.sh ...
  16. #
  17. # $Id: mplayer.sh.conf,v 1.23 2003/12/28 19:09:29 juri Exp $
  18. #
  19. # ***
  20. # *** Mandatory Values
  21. # ***
  22. #
  23. # Where to find mplayer executable ?
  24. MPLAYER="/usr/bin/mplayer"
  25. # Video Out Filter lavc or fame - see mplayer DVB docs for details !
  26. #VOP="lavc=9000"
  27. VOP="lavc=5000"
  28. # Video out device
  29. # most users will want the default of 'mpegpes', but users with a dxr3
  30. # need to use 'dxr3'
  31. #VO="dxr3"
  32. VO="mpegpes"
  33. # Audio output device and possible additional options
  34. # most users will want the default of 'mpegpes', but users with a dxr3
  35. # need to use 'oss:/dev/em8300_ma-0'
  36. #AO="oss:/dev/em8300_ma-0"
  37. AO="mpegpes"
  38. # X-Resolutions for the DVBs card (smallest value first !)
  39. #
  40. XResPAL=(352 480 528 544 688 704 720)
  41. XResNTSC=(352 480 512 640 704 720)
  42. # Set the following to 'true' or 'false' according to
  43. # the capabilities of your TV set.
  44. #
  45. # At least _one_ has to be true!
  46. PAL="true"
  47. NTSC="false"
  48. # Use mplayer's -speed option for videos with a different
  49. # frames/s value than the selected TV norm
  50. #
  51. # this setting is only used if either PAL or NTSC
  52. # is set to false!
  53. USE_SPEED="true"
  54. # set to true if you want to use AC3 output
  55. USEAC3="false"
  56. # how to play AC3 audio?
  57. # for AC3 via sound card (ALSA driver):
  58. AC3AOUT="-ao alsa9 -ac hwac3"
  59. # for AC3 via DVB (doesn't need AC3overDVB patch);
  60. # needs MPlayer 0.90 final, or newer:
  61. #AC3AOUT="-ac hwac3"
  62. # what aspect ratio has your TV set?
  63. # either 4/3 (conventional) or 16/9 (widescreen)
  64. #TV_ASPECT="16/9"
  65. TV_ASPECT="4/3"
  66. # ***
  67. # *** Optional Setting *** Simply Remove them if they do not fit your needs...
  68. # ***
  69. # What version of MPlayer do you have?
  70. # if you have 0.9x then choose 'false'
  71. # if you have 1.0(pre) then choose 'true'
  72. MPLAYER_V1="true"
  73. # Cache Option for MPlayer
  74. CACHE="4096"
  75. # Framedrop
  76. FRAMEDROP="true"
  77. # Lirc RC File
  78. LIRCRC="/video/.lircrc"
  79. # do we have a slow CPU?
  80. # if so, reduce the Y resolution to the half of the possible maximum:
  81. # NTSC: 240
  82. # PAL: 288
  83. # uncomment the following line if you have a slow CPU:
  84. #SLOW_CPU="true"
  85. # Where to find DVD/VCD dummy files? (just a fake and empty text file for the plugin)
  86. # Example: create two empty text files (DVD and VCD) in /video/plugins/DVD-VCD/
  87. # !!!The files must be named VCD and DVD (all capital letters)!!!
  88. DVDFiles="/video/plugins/DVD-VCD"
  89. # What is your DVD-ROM device ?
  90. DVD="/dev/hdc"
  91. # What languages do your DVD's use ?
  92. DVDLANG="de"
  93. # extra DVD options
  94. DVDOPTIONS="-aop list=volume:volume=170"
  95. # extra VCD options
  96. VCDOPTIONS=
  97. # should MPEG files be played directly (without rescaling) if possible?
  98. MPEG_DIRECT="true"
  99. #Subtitle options
  100. SUBPOS="80" #Vertical position 0-100
  101. SUBCOLOR="0" #Background color 0=black 255=white
  102. SUBALPHA="30" #Background transparency (0-255)
  103. # Userdefined Options - make sure they do not collide with options
  104. # used in mplayer.sh
  105. # Only for experienced users
  106. # USERDEF="-what -option you ever -like to give -to mplayer"
  107. USERDEF="-quiet"
  108. #USERDEF=
  109. # set to true to enable debugging output
  110. #DEBUG="true"
  111. # End of Options