Skip to content

Latest commit

 

History

History
 
 

coil-video

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Video Frames

To add video frame support, import the extension library:

implementation("io.coil-kt:coil-video:0.11.0")

And add the two fetchers to your component registry when constructing your ImageLoader:

val imageLoader = ImageLoader.Builder(context)
    .componentRegistry {
         add(VideoFrameFileFetcher())
         add(VideoFrameUriFetcher())
    }
    .build()

!!! Note Video frame decoding is only supported for Files and Uris (content and file schemes only).

To specify the time code of the frame to extract from a video, use videoFrameMillis or videoFrameMicros:

imageView.load(File("/path/to/video.mp4")) {
    videoFrameMillis(1000)
}

If a frame time isn't specified, the first frame of the video is decoded.

The ImageLoader will automatically detect any videos and extract their frames if the request's filename/URI ends with a valid video extension. If it does not, you can set the Fetcher explicitly for the request.