25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
4.7 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. # Below you can set a timout time (in seconds) that is waited between each video
  31. wait_time = 0
  32. # To play random playlist.
  33. is_random = false
  34. # Control the program via keyboard
  35. # If enabled, hit ESC key to quit the program anytime (except countdown).
  36. keyboard_control = false
  37. #keyboard_control = true
  38. # Set the background to a custom image
  39. # This image is displayed between movies
  40. # Can potentially look broken if video resolution is smaller than display resolution
  41. # bgimage = /home/pi/static/bg.png
  42. bgimage =
  43. # Change the color of the background that is displayed behind movies (only works
  44. # with omxplayer). Provide 3 numeric values from 0 to 255 separated by a commma
  45. # for the red, green, and blue color value. Default is 0, 0, 0 or black.
  46. bgcolor = 0, 0, 0
  47. # Change the color of the foreground text that is displayed with the on screen
  48. # display messages. Provide 3 numeric values in the same format as bgcolor
  49. # above. Default is 255, 255, 255 or white.
  50. fgcolor = 255, 255, 255
  51. # Output program state to standard output if true.
  52. console_output = true
  53. #console_output = false
  54. # Directory file reader configuration follows.
  55. [directory]
  56. # The path to search for movies when using the directory file reader.
  57. path = /home/pi
  58. # USB drive file reader configuration follows.
  59. [usb_drive]
  60. # The path to mount new USB drives. A number will be appended to the path for
  61. # each mounted drive (i.e. /mnt/usbdrive0, /mnt/usbdrive1, etc.).
  62. mount_path = /mnt/usbdrive
  63. # Whether to mount the USB drives as readonly (true) or writable (false). It is
  64. # recommended to mount USB drives readonly for reliability.
  65. readonly = true
  66. # omxplayer configuration follows.
  67. [omxplayer]
  68. # List of supported file extensions. Must be comma separated and should not
  69. # include the dot at the start of the extension.
  70. extensions = avi, mov, mkv, mp4, m4v
  71. # Sound output for omxplayer, either hdmi, local, or both. When set to hdmi the
  72. # video sound will be played on the HDMI output, and when set to local the sound
  73. # will be played on the analog audio output. A value of both will play sound on
  74. # both HDMI and the analog output. The both value is the default.
  75. sound = both
  76. #sound = hdmi
  77. #sound = local
  78. # Sound volume output for the video player will be read from a file near the
  79. # video files. If the file does not exist, a default volume of 0db will be used.
  80. # To use this feature create a file in the same directory as the videos and name
  81. # it the value defined below (like 'sound_volume' by default), then inside the
  82. # file add a single line with the volume value in text to pass to omxplayer (using
  83. # its --vol option which takes a value in millibels).
  84. sound_vol_file = sound_volume
  85. # Any extra command line arguments to pass to omxplayer. It is not recommended
  86. # that you change this unless you have a specific need to do so! The audio and
  87. # video FIFO buffers are kept low to reduce clipping ends of movie at loop.
  88. extra_args = --no-osd --audio_fifo 0.01 --video_fifo 0.01
  89. # hello_video player configuration follows.
  90. [hello_video]
  91. # List of supported file extensions. Must be comma separated and should not
  92. # include the dot at the start of the extension.
  93. extensions = h264