|
|
@ -497,11 +497,13 @@ class BBCNewsIE(BBCCoUkIE):
|
|
|
|
programme_id = jent.get('externalId')
|
|
|
|
programme_id = jent.get('externalId')
|
|
|
|
xml_url = jent.get('href')
|
|
|
|
xml_url = jent.get('href')
|
|
|
|
|
|
|
|
|
|
|
|
title = jent.get('caption',list_title)
|
|
|
|
title = jent.get('caption','')
|
|
|
|
|
|
|
|
if title == '':
|
|
|
|
|
|
|
|
title = list_title
|
|
|
|
|
|
|
|
|
|
|
|
duration = parse_duration(jent.get('duration'))
|
|
|
|
duration = parse_duration(jent.get('duration'))
|
|
|
|
description = list_title
|
|
|
|
description = list_title
|
|
|
|
if jent.get('caption'):
|
|
|
|
if jent.get('caption', '') != '':
|
|
|
|
description += ' - ' + jent.get('caption')
|
|
|
|
description += ' - ' + jent.get('caption')
|
|
|
|
thumbnail = None
|
|
|
|
thumbnail = None
|
|
|
|
if jent.has_key('image'):
|
|
|
|
if jent.has_key('image'):
|
|
|
|