magicbadger / odr-radioepg-bridge

Creates a DAB EPG bitstream directly from the ODR multiplex configuration file, using RadioDNS to lookup SI and PI documents.
Apache License 2.0
1 stars 3 forks source link

Only PNG image types are valid for DAB EPG #8

Open nickpiggott opened 5 years ago

nickpiggott commented 5 years ago

DAB EPG can only carry PNG images. I've changed the filter to only select PNG images. (Around line 140).

for media in filter(lambda m:
    m.type in (Multimedia.LOGO_COLOUR_SQUARE, Multimedia.LOGO_COLOUR_RECTANGLE) or 
    (m.content in ('image/png') and (m.width, m.height) in ((32, 32), (112, 32), (128, 128), (320, 240))), 
    service.media):