Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snuffy/capacitor-native-video-player
https://github.com/snuffy/capacitor-native-video-player
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/snuffy/capacitor-native-video-player
- Owner: snuffy
- Created: 2021-02-13T13:04:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T01:11:35.000Z (5 months ago)
- Last Synced: 2024-09-19T09:39:43.960Z (4 months ago)
- Language: Swift
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# capacitor-native-video-player
native-video-player
## Install
```bash
npm install capacitor-native-video-player
npx cap sync
```## API
* [`echo(...)`](#echo)
* [`start(...)`](#start)
* [Interfaces](#interfaces)### echo(...)
```typescript
echo(options: { value: string; }) => any
```| Param | Type |
| ------------- | ------------------------------- |
| **`options`** |{ value: string; }
|**Returns:**
any
--------------------
### start(...)
```typescript
start(options: { playlist: IVideoData[]; }) => any
```| Param | Type |
| ------------- | ------------------------------ |
| **`options`** |{ playlist: {}; }
|**Returns:**
any
--------------------
### Interfaces
#### IVideoData
| Prop | Type |
| -------------- | ------------------- |
| **`title`** |string
|
| **`album`** |string
|
| **`filePath`** |string
|
| **`url`** |string
|