Skip to content

Commit

Permalink
Add fetch-youtube-transcript extension (#15298)
Browse files Browse the repository at this point in the history
* Add fetch-youtube-transcript extension

- CHANGELOG.md file and metadata added
- Initial Commit

* README.md file changed

* README.md file updated

* Package.json and README.md file updated

* Changed mode to noview and images changed in metadata

* Update fetch-youtube-transcript.tsx

* Update package.json

* update

* Update fetch-youtube-transcript.tsx

* update

* Update CHANGELOG.md

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: Per Nielsen Tikær <[email protected]>
Co-authored-by: raycastbot <[email protected]>
  • Loading branch information
3 people authored Nov 26, 2024
1 parent c1f301e commit 78768b1
Show file tree
Hide file tree
Showing 11 changed files with 2,364 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/fetch-youtube-transcript/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
31 changes: 31 additions & 0 deletions extensions/fetch-youtube-transcript/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store

# build output
/dist
/build

# logs
*.log
npm-debug.log*

# environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# TypeScript
*.tsbuildinfo
4 changes: 4 additions & 0 deletions extensions/fetch-youtube-transcript/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
13 changes: 13 additions & 0 deletions extensions/fetch-youtube-transcript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Fetch Youtube Transcript Changelog

## [0.1.1] - 2024-11-26

### Added
- Initial project setup
- Basic functionality for fetching YouTube transcripts

## [0.1.0] - 2024-09-18

### Initial Version
- Project initialization
- Core transcript fetching mechanism implemented
40 changes: 40 additions & 0 deletions extensions/fetch-youtube-transcript/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Fetch YouTube Transcript

## Overview
Fetch YouTube Transcript is a Raycast extension that allows you to easily fetch and save transcripts from YouTube videos.

## Features
- Quickly retrieve transcripts for YouTube videos
- Customizable download location
- Simple and intuitive interface

## Installation
Install this extension through the Raycast Store.

## Usage
1. Open Raycast
2. Run the "Fetch YouTube Transcript" command
3. Paste the YouTube video URL
- Provide the full YouTube video URL (e.g., https://www.youtube.com/watch?v=exampleID or https://youtu.be/exampleID)
4. **It will automatically fetch the transcript and save it to the downloads folder.**

## Author
Apoorv Khandelwal

## License
MIT

## Dependencies
- @raycast/api (v1.82.5)
- ytdl-core (v4.11.5)
- node-fetch (v3.3.2)

## Development
- Build: `ray build -e dist`
- Development: `ray develop`
- Lint: `ray lint`
- Publish: `npx @raycast/api@latest publish`

## Categories
- Media
- Productivity
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 78768b1

Please sign in to comment.