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';
| Comment | File | Size | Author |
|---|---|---|---|
| media_flickr.module.patch | 757 bytes | bkat |
Comments
Comment #1
dwatts3624 commentedJust posted an identical patch here: #1847060: Unable to embed Flickr Photosets. Seems like this should be a priority?
Comment #2
dwatts3624 commentedRecently posted an identical patch here: #1847060: Unable to embed Flickr Photosets. Seems like this should be a priority?
Comment #3
bkat commentedThe database update I mentioned is critical to make already existing flickr content render properly.
Comment #4
jyee commentedClosing as a duplicate of #1847060: Unable to embed Flickr Photosets
That issue is older and the thread is more comprehensive.