[prosiebensat1] Add rtmpe support
This commit is contained in:
		| @@ -263,8 +263,9 @@ class ProSiebenSat1IE(InfoExtractor): | |||||||
|             return bitrate / 1000 if bitrate % 1000 == 0 else bitrate |             return bitrate / 1000 if bitrate % 1000 == 0 else bitrate | ||||||
|  |  | ||||||
|         for source in urls_sources: |         for source in urls_sources: | ||||||
|             if source['protocol'] == 'rtmp': |             protocol = source['protocol'] | ||||||
|                 mobj = re.search(r'^(?P<url>rtmp://[^/]+/(?P<app>[^/]+))/(?P<playpath>.+)$', source['url']) |             if protocol == 'rtmp' or protocol == 'rtmpe': | ||||||
|  |                 mobj = re.search(r'^(?P<url>rtmpe?://[^/]+/(?P<app>[^/]+))/(?P<playpath>.+)$', source['url']) | ||||||
|                 if not mobj: |                 if not mobj: | ||||||
|                     continue |                     continue | ||||||
|                 formats.append({ |                 formats.append({ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M.
					Sergey M.