mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[brightcove] fix on Python 2.6
This commit is contained in:
		| @@ -24,13 +24,13 @@ class BrightcoveIE(InfoExtractor): | ||||
|         object_doc = xml.etree.ElementTree.fromstring(object_str) | ||||
|         assert u'BrightcoveExperience' in object_doc.attrib['class'] | ||||
|         params = {'flashID': object_doc.attrib['id'], | ||||
|                   'playerID': object_doc.find('./param[@name="playerID"]').attrib['value'], | ||||
|                   'playerID': find_xpath_attr(object_doc, './param', 'name', 'playerID').attrib['value'], | ||||
|                   } | ||||
|         playerKey = object_doc.find('./param[@name="playerKey"]') | ||||
|         playerKey = find_xpath_attr(object_doc, './param', 'name', 'playerKey') | ||||
|         # Not all pages define this value | ||||
|         if playerKey is not None: | ||||
|             params['playerKey'] = playerKey.attrib['value'] | ||||
|         videoPlayer = object_doc.find('./param[@name="@videoPlayer"]') | ||||
|         videoPlayer = find_xpath_attr(object_doc, './param', 'name', '@videoPlayer') | ||||
|         if videoPlayer is not None: | ||||
|             params['@videoPlayer'] = videoPlayer.attrib['value'] | ||||
|         data = compat_urllib_parse.urlencode(params) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Philipp Hagemeister
					Philipp Hagemeister