media-7.x-2.0-unstable7 breaks all the providers. Apparently you now need to define a media_
_file_mimetype_mapping_alter(), and media_
_file_default_types_alter() that define the pseudo mimetypes that you handle.

Additionally, you need to update the database so that the type in file_managed is set to 'video' whenever the filemime is 'video/flickr'.

update file_managed set type='video' where type='undefined' and filemime='video/flickr';

CommentFileSizeAuthor
media_flickr.module.patch757 bytesbkat

Comments

dwatts3624’s picture

Just posted an identical patch here: #1847060: Unable to embed Flickr Photosets. Seems like this should be a priority?

dwatts3624’s picture

Recently posted an identical patch here: #1847060: Unable to embed Flickr Photosets. Seems like this should be a priority?

bkat’s picture

The database update I mentioned is critical to make already existing flickr content render properly.

jyee’s picture

Status: Active » Closed (duplicate)

Closing as a duplicate of #1847060: Unable to embed Flickr Photosets
That issue is older and the thread is more comprehensive.