mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-30 15:14:14 +01:00
flake8 over-indented for visual indent
This commit is contained in:
parent
8f126c3d49
commit
5339bdc265
@ -176,7 +176,7 @@ def dashparse(options, res, url):
|
|||||||
bitrate = i + list(audiofiles.keys())[0]
|
bitrate = i + list(audiofiles.keys())[0]
|
||||||
options.segments = videofiles[i]["segments"]
|
options.segments = videofiles[i]["segments"]
|
||||||
streams[bitrate] = DASH(copy.copy(options), url, bitrate, cookies=res.cookies,
|
streams[bitrate] = DASH(copy.copy(options), url, bitrate, cookies=res.cookies,
|
||||||
audio=audiofiles[list(audiofiles.keys())[0]]["files"], files=videofiles[i]["files"])
|
audio=audiofiles[list(audiofiles.keys())[0]]["files"], files=videofiles[i]["files"])
|
||||||
|
|
||||||
return streams
|
return streams
|
||||||
|
|
||||||
|
@ -47,9 +47,9 @@ class Mtvnn(Service, OpenGraphThumbMixin):
|
|||||||
hls_asset = self.http.request("get", hls_url)
|
hls_asset = self.http.request("get", hls_url)
|
||||||
xml = ET.XML(hls_asset.text)
|
xml = ET.XML(hls_asset.text)
|
||||||
|
|
||||||
if xml.find("./video") is not None and xml.find("./video").find("item") is not None and \
|
if xml.find("./video") is not None and xml.find("./video").find("item") is not None \
|
||||||
xml.find("./video").find("item").find("rendition") is not None and \
|
and xml.find("./video").find("item").find("rendition") is not None \
|
||||||
xml.find("./video").find("item").find("rendition").find("src") is not None:
|
and xml.find("./video").find("item").find("rendition").find("src") is not None:
|
||||||
|
|
||||||
hls_url = xml.find("./video").find("item").find("rendition").find("src").text
|
hls_url = xml.find("./video").find("item").find("rendition").find("src").text
|
||||||
stream = hlsparse(self.options, self.http.request("get", hls_url), hls_url)
|
stream = hlsparse(self.options, self.http.request("get", hls_url), hls_url)
|
||||||
|
7
setup.py
7
setup.py
@ -46,8 +46,9 @@ setup(
|
|||||||
"Topic :: Multimedia :: Video",
|
"Topic :: Multimedia :: Video",
|
||||||
"Topic :: Utilities"],
|
"Topic :: Utilities"],
|
||||||
extras_require={"dev": [
|
extras_require={"dev": [
|
||||||
"flake8>=3.5, <3.6",
|
"flake8>=3.5, <3.6",
|
||||||
"tox>=2.3, <3",
|
"tox>=2.3, <3",
|
||||||
"rstcheck>=2.2, <4.0"]
|
"rstcheck>=2.2, <4.0"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user