Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1. # THIS SECTION IS REQUIRED ########################################################################
  2. [Discovery] # most likely you won't need to change anything here
  3. Device-Auth = "telly123" # These settings are all related to how telly identifies
  4. Device-ID = 12345678 # itself to Plex.
  5. Device-UUID = ""
  6. Device-Firmware-Name = "hdhomeruntc_atsc"
  7. Device-Firmware-Version = "20150826"
  8. Device-Friendly-Name = "telly"
  9. Device-Manufacturer = "Silicondust"
  10. Device-Model-Number = "HDTC-2US"
  11. SSDP = true
  12.  
  13. # Note on running multiple instances of telly
  14. # There are three things that make up a "key" for a given Telly Virtual Tuner:
  15. # Device-ID [required], Device-UUID [optional], and port [required]
  16. # When you configure your additional telly instances, change:
  17. # the Device-ID [above] AND
  18. # the Device-UUID [above, if you're entering one] AND
  19. # the port [below in the "Web" section]
  20.  
  21. # THIS SECTION IS REQUIRED ########################################################################
  22. [IPTV]
  23. Streams = 1 # number of simultaneous streams that telly virtual tuner will provide
  24. # This is often 1, but is set by your iptv provider
  25. Starting-Channel = 10000 # When telly assigns channel numbers it will start here
  26. XMLTV-Channels = true # if true, any channel numbers specified in your M3U file will be used.
  27. # FFMpeg = true # if this is uncommented, streams are buffered through ffmpeg;
  28. # ffmpeg must be installed and on your $PATH
  29. # if you want to use this with Docker, be sure you use the correct docker image
  30. # if you DO NOT WANT TO USE FFMPEG leave this commented; DO NOT SET IT TO FALSE [Issue #185]
  31.  
  32. # THIS SECTION IS REQUIRED ########################################################################
  33. [Log]
  34. Level = "info" # Only log messages at or above the given level. [debug, info, warn, error, fatal]
  35. Requests = true # Log HTTP requests made to telly
  36.  
  37. # THIS SECTION IS REQUIRED ########################################################################
  38. [Web]
  39. Base-Address = "192.168.0.31:6077" # Set this to the IP address of the machine telly runs on AS SEEN BY PLEX
  40. # telly will be telling Plex to connect to URLs at this address.
  41. Listen-Address = "0.0.0.0:6077" # this can stay as-is
  42.  
  43. # THIS SECTION IS OPTIONAL ========================================================================
  44. #[SchedulesDirect] # If you have a Schedules Direct account, fill in details and then
  45. # UNCOMMENT THIS SECTION
  46. # Username = "" # This is under construction; There is no provider
  47. # Password = "" # that works with it fully at this time
  48.  
  49. # AT LEAST ONE SOURCE IS REQUIRED #################################################################
  50. # DELETE OR COMMENT OUT SOURCES THAT YOU ARE NOT USING ############################################
  51. # NONE OF THESE EXAMPLES WORK AS-IS; IF YOU DON'T CHANGE IT, DELETE IT ############################
  52. [[Source]]
  53. Name = "IrisTvApp" # Name is optional and is used mostly for logging purposes
  54. Provider = "Iris" # named providers currently supported are "area51" and "Iris"
  55. # IF YOUR PROVIDER IS NOT ONE OF THE ABOVE, CONFIGURE IT AS A "Custom" PROVIDER; SEE BELOW
  56. Username = "01524540"
  57. Password = "41445589"
  58. # THE FOLLOWING KEYS ARE OPTIONAL IN THEORY, REQUIRED IN PRACTICE
  59. # Filter = "YOUR_FILTER_REGULAR_EXPRESSION"
  60. # Telly is written in Go, and uses the Go regular expression system,
  61. # which is limited compared to other regular expression parsers.
  62. # FilterKey = "group-title" # Telly applies the regular expression to the contents of this key in the M3U.
  63. # FilterRaw = false # FilterRaw will run your regex on the entire line instead of just specific keys.
  64. # Sort = "group-title" # Sort will alphabetically sort your channels by the M3U key provided
  65.  
  66. # END TELLY CONFIG ###############################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement