Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmadrosid/echotube
Get video transcription from youtube url.
https://github.com/ahmadrosid/echotube
Last synced: 22 days ago
JSON representation
Get video transcription from youtube url.
- Host: GitHub
- URL: https://github.com/ahmadrosid/echotube
- Owner: ahmadrosid
- Created: 2023-08-05T08:00:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-21T11:55:35.000Z (8 months ago)
- Last Synced: 2024-03-21T12:52:27.040Z (8 months ago)
- Language: TypeScript
- Homepage: https://echo-tube.vercel.app
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EchoTube
[OpenAPI spec](https://echo-tube.vercel.app/swagger.json)
## Example endpoint:
**1. Get video info**:
```bash
curl --request POST \
--url https://echo-tube.vercel.app/get-video-info \
--header 'Content-Type: application/json' \
--data '{
"videoUrl":"https://www.youtube.com/watch?v=-KO3GIoBT5U"
}'
```**2. Get channel videos**
```bash
curl --request POST \
--url https://echo-tube.vercel.app/channel/videos \
--header 'Content-Type: application/json' \
--data '{
"id":"UCe1XaogCcgVssRJ9jV295og"
}'
```**2. Get video transcript**
```bash
curl --request POST \
--url https://echo-tube.vercel.app/get-transcript \
--header 'Content-Type: application/json' \
--data '{
"videoUrl":"https://www.youtube.com/watch?v=-KO3GIoBT5U"
}'
```