Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2014
756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 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.  
  24. # MPlayer2
  25. #player=C:\mplayer2\mplayer2.exe -cache 4096
  26.  
  27.  
  28. # Use this if you want to transport the stream to the player via a named pipe.
  29. #player-fifo
  30.  
  31. # Use this if you want to transport the stream to the player via HTTP.
  32. #player-http
  33.  
  34. # Use this if you want Livestreamer to only pass a URL to your player and
  35. # let it handle the transport of the stream itself.
  36. #player-passthrough=http,hls,rtmp
  37.  
  38. # By default Livestreamer will close the player when stream is over.
  39. # Use this option to let the player stay or close itself instead.
  40. #player-no-close
  41.  
  42. # Use this option if you want Livestreamer to keep trying to access
  43. # the stream even if it goes offline or disconnects. Your player must
  44. # support HTTP and its playlist should be set to repeat mode.
  45. #player-continuous-http
  46.  
  47. # Show console output from the video player
  48. #verbose-player
  49.  
  50. # RTMP streams are downloaded using rtmpdump. Full path to the rtmpdump exe
  51. # should be specified here.
  52. rtmpdump=C:\Program Files (x86)\Livestreamer\rtmpdump\rtmpdump.exe
  53.  
  54. # Log level, default is info
  55. #loglevel=debug
  56.  
  57. # Cookies to authenticate the user to Twitch/JustinTV. Needed for streams
  58. # that require authentication. Replace with actual values from your browser session.
  59. #jtv-cookie=_twitch_session_id=xxxxxx; persistent=xxxxx;
  60.  
  61. # Cookies to authenticate the user to allow access to GOMTV.net streams.
  62. # Replace with actual values from your browser session.
  63. #gomtv-cookie=SES_MEMBERNO=xxx; SES_STATE=xxx; SES_MEMBERNICK=xxx; SES_USERNICK=xxx;
  64.  
  65. # A username and password to allow access to GOMTV.net streams.
  66. #gomtv-username=
  67. #gomtv-password=
  68.  
  69. player="C:\Program Files (x86)\SVP\MPC-HC\mpc-hc.exe"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement