| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | 26-Sep-2023 | - | ||||
| android/ | H | 26-Sep-2023 | - | 528 | 409 | |
| build/ | H | 26-Sep-2023 | - | 88 | 44 | |
| ios/ | H | 26-Sep-2023 | - | 131 | 101 | |
| src/ | H | 26-Sep-2023 | - | 71 | 33 | |
| .eslintrc.js | H A D | 26-Sep-2023 | 103 | 3 | 1 | |
| .npmignore | H A D | 26-Sep-2023 | 183 | 12 | 8 | |
| CHANGELOG.md | H A D | 26-Sep-2023 | 5.4 KiB | 157 | 81 | |
| README.md | H A D | 26-Sep-2023 | 1.3 KiB | 35 | 19 | |
| babel.config.js | H A D | 26-Sep-2023 | 104 | 3 | 1 | |
| expo-module.config.json | H A D | 26-Sep-2023 | 220 | 11 | 10 | |
| package.json | H A D | 26-Sep-2023 | 1,022 | 40 | 39 | |
| tsconfig.json | H A D | 26-Sep-2023 | 217 | 10 | 9 |
README.md
1# expo-video-thumbnails 2 3Provides function that let you generate an image from video. This can be used for example to create a video gallery. 4 5# API documentation 6 7- [Documentation for the main branch](https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/video-thumbnails.mdx) 8- [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/video-thumbnails/) 9 10# Installation in managed Expo projects 11 12For [managed](https://docs.expo.dev/archive/managed-vs-bare/) Expo projects, please follow the installation instructions in the [API documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/video-thumbnails/). 13 14# Installation in bare React Native projects 15 16For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing. 17 18### Add the package to your npm dependencies 19 20``` 21npx expo install expo-video-thumbnails 22``` 23 24### Configure for iOS 25 26Run `npx pod-install` after installing the npm package. 27 28### Configure for Android 29 30No additional set up necessary. 31 32# Contributing 33 34Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing). 35