No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

115 líneas
4.6 KiB

  1. # Main configuration file for video looper.
  2. # You can change settings like what video player is used or where to search for
  3. # movie files. Lines that begin with # are comments that will be ignored.
  4. # Uncomment a line by removing its preceding # character.
  5. # Video looper configuration block follows.
  6. [video_looper]
  7. # What video player will be used to play movies. Can be either omxplayer or
  8. # hello_video. omxplayer can play common formats like avi, mov, mp4, etc. and
  9. # with full audio and video, but it has a small ~100ms delay between loops.
  10. # hello_video is a simpler player that doesn't do audio and only plays raw H264
  11. # streams, but loops seemlessly. The default is omxplayer.
  12. video_player = omxplayer
  13. #video_player = hello_video
  14. # Where to find movie files. Can be either usb_drive or directory. When using
  15. # usb_drive any USB stick inserted in to the Pi will be automatically mounted
  16. # and searched for video files (only in the root directory). Alternatively the
  17. # directory option will search only a specified directory on the SD card for
  18. # movie files. Note that you change the directory by modifying the setting in
  19. # the [directory] section below. The default is usb_drive.
  20. file_reader = usb_drive
  21. #file_reader = directory
  22. # The rest of the configuration for video looper below is optional and can be
  23. # ignored.
  24. # Control whether informative messages about the current player state are
  25. # displayed, like the number of movies loaded or if it's waiting to load movies.
  26. # Default is true to display these messages, but can be set to false to disable
  27. # them entirely.
  28. osd = true
  29. #osd = false
  30. # To play random playlist.
  31. is_random = false
  32. # Control the program via keyboard
  33. # If enabled, hit ESC key to quit the program anytime (except countdown).
  34. keyboard_control = false
  35. #keyboard_control = true
  36. # Set the background to a custom image
  37. # This image is displayed between movies
  38. # Can potentially look broken if video resolution is smaller than display resolution
  39. # bgimage = /home/pi/static/bg.png
  40. bgimage =
  41. # Change the color of the background that is displayed behind movies (only works
  42. # with omxplayer). Provide 3 numeric values from 0 to 255 separated by a commma
  43. # for the red, green, and blue color value. Default is 0, 0, 0 or black.
  44. bgcolor = 0, 0, 0
  45. # Change the color of the foreground text that is displayed with the on screen
  46. # display messages. Provide 3 numeric values in the same format as bgcolor
  47. # above. Default is 255, 255, 255 or white.
  48. fgcolor = 255, 255, 255
  49. # Output program state to standard output if true.
  50. console_output = true
  51. #console_output = false
  52. # Directory file reader configuration follows.
  53. [directory]
  54. # The path to search for movies when using the directory file reader.
  55. path = /home/pi
  56. # USB drive file reader configuration follows.
  57. [usb_drive]
  58. # The path to mount new USB drives. A number will be appended to the path for
  59. # each mounted drive (i.e. /mnt/usbdrive0, /mnt/usbdrive1, etc.).
  60. mount_path = /mnt/usbdrive
  61. # Whether to mount the USB drives as readonly (true) or writable (false). It is
  62. # recommended to mount USB drives readonly for reliability.
  63. readonly = true
  64. # omxplayer configuration follows.
  65. [omxplayer]
  66. # List of supported file extensions. Must be comma separated and should not
  67. # include the dot at the start of the extension.
  68. extensions = avi, mov, mkv, mp4, m4v
  69. # Sound output for omxplayer, either hdmi, local, or both. When set to hdmi the
  70. # video sound will be played on the HDMI output, and when set to local the sound
  71. # will be played on the analog audio output. A value of both will play sound on
  72. # both HDMI and the analog output. The both value is the default.
  73. sound = both
  74. #sound = hdmi
  75. #sound = local
  76. # Sound volume output for the video player will be read from a file near the
  77. # video files. If the file does not exist, a default volume of 0db will be used.
  78. # To use this feature create a file in the same directory as the videos and name
  79. # it the value defined below (like 'sound_volume' by default), then inside the
  80. # file add a single line with the volume value in text to pass to omxplayer (using
  81. # its --vol option which takes a value in millibels).
  82. sound_vol_file = sound_volume
  83. # Any extra command line arguments to pass to omxplayer. It is not recommended
  84. # that you change this unless you have a specific need to do so! The audio and
  85. # video FIFO buffers are kept low to reduce clipping ends of movie at loop.
  86. extra_args = --no-osd --audio_fifo 0.01 --video_fifo 0.01
  87. # hello_video player configuration follows.
  88. [hello_video]
  89. # List of supported file extensions. Must be comma separated and should not
  90. # include the dot at the start of the extension.
  91. extensions = h264