[konserthusetplay] Reorder code pieces
This commit is contained in:
parent
f070197bd7
commit
b6bfa6fb79
1 changed files with 3 additions and 4 deletions
|
@ -44,10 +44,6 @@ class KonserthusetPlayIE(InfoExtractor):
|
||||||
|
|
||||||
source = next(f for f in playlist if f.get('bitrates'))
|
source = next(f for f in playlist if f.get('bitrates'))
|
||||||
|
|
||||||
connection_url = (player_config.get('rtmp', {}).get(
|
|
||||||
'netConnectionUrl') or player_config.get(
|
|
||||||
'plugins', {}).get('bwcheck', {}).get('netConnectionUrl'))
|
|
||||||
|
|
||||||
FORMAT_ID_REGEX = r'_([^_]+)_h264m\.mp4'
|
FORMAT_ID_REGEX = r'_([^_]+)_h264m\.mp4'
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
@ -58,6 +54,9 @@ class KonserthusetPlayIE(InfoExtractor):
|
||||||
fallback_format_id = self._search_regex(
|
fallback_format_id = self._search_regex(
|
||||||
FORMAT_ID_REGEX, fallback_url, 'format id', default=None)
|
FORMAT_ID_REGEX, fallback_url, 'format id', default=None)
|
||||||
|
|
||||||
|
connection_url = (player_config.get('rtmp', {}).get(
|
||||||
|
'netConnectionUrl') or player_config.get(
|
||||||
|
'plugins', {}).get('bwcheck', {}).get('netConnectionUrl'))
|
||||||
if connection_url:
|
if connection_url:
|
||||||
for f in source['bitrates']:
|
for f in source['bitrates']:
|
||||||
video_url = f.get('url')
|
video_url = f.get('url')
|
||||||
|
|
Loading…
Reference in a new issue