Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fetch-youtube-transcript extension #15298

Merged
merged 12 commits into from
Nov 26, 2024
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
}
18 changes: 18 additions & 0 deletions extensions/fetch-youtube-transcript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Fetch Youtube Transcript Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### 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
Loading