Skip to content

Commit

Permalink
Removed streamlink_cli mirror files
Browse files Browse the repository at this point in the history
  • Loading branch information
back-to committed Nov 19, 2019
1 parent b10822c commit 74bf827
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1,222 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

- requiere Streamlink version 1.1.1
- Dropped support for Python 3.4
- Removed streamlink_cli mirror files.

## 0.2.0

Expand Down
2 changes: 1 addition & 1 deletion liveproxy/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from liveproxy import __version__ as liveproxy_version

from .constants import FILE_OUTPUT_LIST
from .mirror_argparser import (
from streamlink_cli.argparser import (
ArgumentParser,
HelpFormatter,
num,
Expand Down
19 changes: 0 additions & 19 deletions liveproxy/constants.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
import os

from streamlink import __version__ as STREAMLINK_VERSION
from streamlink.compat import is_win32

DEFAULT_PLAYER_ARGUMENTS = u"{filename}"
DEFAULT_STREAM_METADATA = {
"title": u"Unknown Title",
"author": u"Unknown Author",
"category": u"No Category",
"game": u"No Game/Category"
}
SUPPORTED_PLAYERS = {
"vlc": ["vlc", "vlc.exe"],
"mpv": ["mpv", "mpv.exe"]
}
LIVESTREAMER_VERSION = STREAMLINK_VERSION

if is_win32:
APPDATA = os.environ['APPDATA']
CONFIG_FILES = [os.path.join(APPDATA, 'streamlink', 'streamlinkrc')]
Expand Down Expand Up @@ -47,13 +33,8 @@

__all__ = [
'CONFIG_FILES',
'DEFAULT_PLAYER_ARGUMENTS',
'DEFAULT_STREAM_METADATA',
'LIVESTREAMER_VERSION',
'PLUGINS_DIR',
'STREAM_PASSTHROUGH',
'STREAM_SYNONYMS',
'STREAMLINK_VERSION',
'SUPPORTED_PLAYERS',
'FILE_OUTPUT_LIST',
]
Loading

0 comments on commit 74bf827

Please sign in to comment.