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.

98 lines
3.9 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. # Change the color of the background that is displayed behind movies (only works
  31. # with omxplayer). Provide 3 numeric values from 0 to 255 separated by a commma
  32. # for the red, green, and blue color value. Default is 0, 0, 0 or black.
  33. bgcolor = 0, 0, 0
  34. # Change the color of the foreground text that is displayed with the on screen
  35. # display messages. Provide 3 numeric values in the same format as bgcolor
  36. # above. Default is 255, 255, 255 or white.
  37. fgcolor = 255, 255, 255
  38. # Output program state to standard output if true.
  39. console_output = true
  40. #console_output = false
  41. # Directory file reader configuration follows.
  42. [directory]
  43. # The path to search for movies when using the directory file reader.
  44. path = /home/pi
  45. # USB drive file reader configuration follows.
  46. [usb_drive]
  47. # The path to mount new USB drives. A number will be appended to the path for
  48. # each mounted drive (i.e. /mnt/usbdrive0, /mnt/usbdrive1, etc.).
  49. mount_path = /mnt/usbdrive
  50. # Whether to mount the USB drives as readonly (true) or writable (false). It is
  51. # recommended to mount USB drives readonly for reliability.
  52. readonly = true
  53. # omxplayer configuration follows.
  54. [omxplayer]
  55. # List of supported file extensions. Must be comma separated and should not
  56. # include the dot at the start of the extension.
  57. extensions = avi, mov, mkv, mp4, m4v
  58. # Sound output for omxplayer, either hdmi, local, or both. When set to hdmi the
  59. # video sound will be played on the HDMI output, and when set to local the sound
  60. # will be played on the analog audio output. A value of both will play sound on
  61. # both HDMI and the analog output. The both value is the default.
  62. sound = both
  63. #sound = hdmi
  64. #sound = local
  65. # Sound volume output for the video player will be read from a file near the
  66. # video files. If the file does not exist, a default volume of 0db will be used
  67. sound_vol_file = sound_volume
  68. # Any extra command line arguments to pass to omxplayer. It is not recommended
  69. # that you change this unless you have a specific need to do so! The audio and
  70. # video FIFO buffers are kept low to reduce clipping ends of movie at loop.
  71. extra_args = --no-osd --audio_fifo 0.01 --video_fifo 0.01
  72. # hello_video player configuration follows.
  73. [hello_video]
  74. # List of supported file extensions. Must be comma separated and should not
  75. # include the dot at the start of the extension.
  76. extensions = h264