Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

video_looper.ini 3.8 KiB

9 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # Enable some output to standard output with program state. Good for debugging
  39. # but otherwise should be disabled.
  40. console_output = false
  41. #console_output = true
  42. # Directory file reader configuration follows.
  43. [directory]
  44. # The path to search for movies when using the directory file reader.
  45. path = /home/pi
  46. # USB drive file reader configuration follows.
  47. [usb_drive]
  48. # The path to mount new USB drives. A number will be appended to the path for
  49. # each mounted drive (i.e. /mnt/usbdrive0, /mnt/usbdrive1, etc.).
  50. mount_path = /mnt/usbdrive
  51. # Whether to mount the USB drives as readonly (true) or writable (false). It is
  52. # recommended to mount USB drives readonly for reliability.
  53. readonly = true
  54. # omxplayer configuration follows.
  55. [omxplayer]
  56. # List of supported file extensions. Must be comma separated and should not
  57. # include the dot at the start of the extension.
  58. extensions = avi, mov, mkv, mp4, m4v
  59. # Sound output for omxplayer, either hdmi, local, or both. When set to hdmi the
  60. # video sound will be played on the HDMI output, and when set to local the sound
  61. # will be played on the analog audio output. A value of both will play sound on
  62. # both HDMI and the analog output. The both value is the default.
  63. sound = both
  64. #sound = hdmi
  65. #sound = local
  66. # Any extra command line arguments to pass to omxplayer. It is not recommended
  67. # that you change this unless you have a specific need to do so! The audio and
  68. # video FIFO buffers are kept low to reduce clipping ends of movie at loop.
  69. extra_args = --no-osd --audio_fifo 0.01 --video_fifo 0.01
  70. # hello_video player configuration follows.
  71. [hello_video]
  72. # List of supported file extensions. Must be comma separated and should not
  73. # include the dot at the start of the extension.
  74. extensions = h264