Advertisement
Guest User

Untitled

a guest
Oct 29th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. # Format is option=value. Lines starting with a # is considered comments
  2. # and are ignored.
  3.  
  4. # By default livestreamer will attempt to locate VLC on your system
  5. # and use that, but you can also specify the location of a player
  6. # yourself.
  7.  
  8. # Important: You must use a quoted path if there are spaces in the path. This
  9. # is because the player command is parsed like a shell command to allow
  10. # parameters to be passed to the player.
  11.  
  12. # Here is a few examples of players:
  13.  
  14. # VLC
  15. #player="C:\Program Files (x86)\VideoLAN\VLC\vlc.exe"
  16. #player="C:\Program Files\VideoLAN\VLC\vlc.exe"
  17. # Using --file-caching is recommended, but is only supported in VLC 2.0+
  18. #player="C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --file-caching=5000
  19. #player="C:\Program Files\VideoLAN\VLC\vlc.exe" --file-caching=5000
  20.  
  21. # MPC-HC, must be at least version 1.7 to be used
  22. #player="C:\Program Files (x86)\MPC-HC\mpc-hc.exe"
  23. player="C:\Program Files (x86)\Combined Community Codec Pack\MPC\mpc-hc.exe"
  24.  
  25. # MPlayer2
  26. #player=C:\mplayer2\mplayer2.exe -cache 4096
  27.  
  28.  
  29. # Use this if you want to transport the stream to the player via a named pipe.
  30. #player-fifo
  31.  
  32. # Use this if you want to transport the stream to the player via HTTP.
  33. #player-http
  34.  
  35. # Use this if you want Livestreamer to only pass a URL to your player and
  36. # let it handle the transport of the stream itself.
  37. #player-passthrough=http,hls,rtmp
  38.  
  39. # By default Livestreamer will close the player when stream is over.
  40. # Use this option to let the player stay or close itself instead.
  41. #player-no-close
  42.  
  43. # Use this option if you want Livestreamer to keep trying to access
  44. # the stream even if it goes offline or disconnects. Your player must
  45. # support HTTP and its playlist should be set to repeat mode.
  46. #player-continuous-http
  47.  
  48. # Show console output from the video player
  49. #verbose-player
  50.  
  51. # RTMP streams are downloaded using rtmpdump. Full path to the rtmpdump exe
  52. # should be specified here.
  53. rtmpdump=C:\Program Files (x86)\Livestreamer\rtmpdump\rtmpdump.exe
  54.  
  55. # Log level, default is info
  56. #loglevel=debug
  57.  
  58. # Cookies to authenticate the user to Twitch/JustinTV. Needed for streams
  59. # that require authentication. Replace with actual values from your browser session.
  60. #jtv-cookie=_twitch_session_id=xxxxxx; persistent=xxxxx;
  61.  
  62. # Cookies to authenticate the user to allow access to GOMTV.net streams.
  63. # Replace with actual values from your browser session.
  64. #gomtv-cookie=SES_MEMBERNO=xxx; SES_STATE=xxx; SES_MEMBERNICK=xxx; SES_USERNICK=xxx;
  65.  
  66. # A username and password to allow access to GOMTV.net streams.
  67. #gomtv-username=
  68. #gomtv-password=
  69.  
  70. twitch-oauth-token=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement