Adiciona ferramenta VideoMind para transcrição e análise de vídeos com resumo customizado
This commit is contained in:
+40
@@ -0,0 +1,40 @@
|
||||
# youtube-transcript
|
||||
|
||||
[](https://badge.fury.io/js/youtube-transcript)
|
||||
|
||||
I wanted to extract a transcript from a youtube video but there was only a python script so I created this to do it in node.
|
||||
This package use unofficial YTB API so it can be broken over the time if no update appears.
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
$ npm i youtube-transcript
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```bash
|
||||
$ yarn add youtube-transcript
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```bash
|
||||
$ pnpm add youtube-transcript
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import { fetchTranscript } from 'youtube-transcript';
|
||||
|
||||
fetchTranscript('videoId or URL').then(console.log);
|
||||
```
|
||||
|
||||
### Methods
|
||||
|
||||
- fetchTranscript(videoId: string [,options: TranscriptConfig]): Promise<TranscriptResponse[]>;
|
||||
|
||||
## License
|
||||
|
||||
**[MIT](LICENSE)** Licensed
|
||||
Reference in New Issue
Block a user