scoutJ
scoutJ
I didn't notice that there is a solution in [README.md](https://github.com/orlowdev/gatsby-source-notion-api#attaching-images-via-files-property). The `createRemoteFileNode` from `gatsby-source-filesystem` can keep the image in local and generate a file node with a `publicURL` field. We...
I found Mp3agic got right cover image from mp3 files that I scratched from youtube, and got borken image from files that I got from jamendo. So I think maybe...
MediaMetadataRetriever is a class in Android api Here is my code: ``` import android.media.MediaMetadataRetriever; Bitmap getCoverImage(String filePath) { MediaMetadataRetriever mmr = new MediaMetadataRetriever(); mmr.setDataSource(filePath); byte[] imageData = mmr.getEmbeddedPicture(); if(imageData !=...