PHPackages                             aytackayin/youtube-to-blog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. aytackayin/youtube-to-blog

ActiveLibrary[API Development](/categories/api)

aytackayin/youtube-to-blog
==========================

YouTube to Blog Laravel package with Chrome Extension API integration for Filament

v1.0.1(3mo ago)06MITPHPPHP ^8.2

Since Jan 28Pushed 3mo agoCompare

[ Source](https://github.com/aytackayin/youtube-to-blog)[ Packagist](https://packagist.org/packages/aytackayin/youtube-to-blog)[ RSS](/packages/aytackayin-youtube-to-blog/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (3)Versions (3)Used By (0)

YouTube to Blog Filament Package
================================

[](#youtube-to-blog-filament-package)

A comprehensive Laravel/Filament package that converts YouTube videos into blog posts via a Chrome extension, automatically downloading the video to the gallery.

> **v1.0.0 Features:**
>
> - Background video downloading (Queue worker)
> - Automatically running worker (Special trigger for Windows)
> - Instant status tracking with Chrome Extension (Polling)
> - "Human-like" downloading capabilities (YouTube 403 bypass)

Requirements
------------

[](#requirements)

- **Laravel 11+** or **Laravel 12**
- **Filament 4.x**
- **yt-dlp:** Must be installed on the server.
- **PHP Queue Worker:** Required for background processes (The package automatically triggers locally).

Installation
------------

[](#installation)

### 1. Install the Package

[](#1-install-the-package)

(After publishing on Packagist):

```
composer require aytackayin/youtube-to-blog
```

During development with `composer.json` repositories setting:

```
"repositories": [
    {
        "type": "path",
        "url": "./packages/aytackayin/youtube-to-blog"
    }
]
```

### 2. Run Migrations

[](#2-run-migrations)

```
php artisan migrate
```

### 3. Publish Config File

[](#3-publish-config-file)

```
php artisan vendor:publish --tag=youtube-to-blog-config
```

### 4. yt-dlp Installation (Important!)

[](#4-yt-dlp-installation-important)

`yt-dlp` must be installed on the server for the video download feature to work.

**Windows:**

1. Download `yt-dlp.exe`.
2. Place it in a folder in your project (e.g., `extensions/youtube-to-blog/`).
3. Add the path to your `.env` file:

```
YT_DLP_PATH="C:/laragon/www/project/extensions/youtube-to-blog/yt-dlp.exe"
```

**Linux:**

1. Install via terminal: ```
    sudo curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp
    sudo chmod a+rx /usr/local/bin/yt-dlp
    ```
2. Configure `.env`: ```
    YT_DLP_PATH="/usr/local/bin/yt-dlp"
    ```

### 5. Chrome Extension Installation

[](#5-chrome-extension-installation)

This package comes with a Chrome Extension.

1. **Download the Package:** Download the `youtube-to-blog-extension.zip` file from this repository.
2. **Unzip:** Extract the files to a folder.
3. **Install on Chrome:**
    - Go to `chrome://extensions` in Chrome.
    - Enable **Developer mode** in the top right.
    - Click **Load unpacked** and select the folder you extracted.
4. **Configure:**
    - Click the extension icon.
    - **Site URL:** `https://your-site.com` (or `http://localhost/project`)
    - **API Key:** Enter the Chrome Token generated from your profile page.

Usage
-----

[](#usage)

1. **Go to YouTube:** Open any video.
2. **"Save as Blog" Button:** Click the button added below the video or the extension icon.
3. **Select Category:** Select a category from the popup and click "Save".
4. **Process Tracking:**
    - The extension will first say "Saved".
    - The video starts downloading in the background (Depends on server load).
    - When the video is downloaded, the Extension gives a "Completed" notification.
    - A system notification also appears in the Panel.

Model Settings
--------------

[](#model-settings)

Add the trait to `App\Models\User` model:

```
use Aytackayin\YoutubeToBlog\Traits\HasYouTubeApiToken;

class User extends Authenticatable
{
    use HasYouTubeApiToken;
}
```

Add the API key management component to your Filament profile page:

```
use Aytackayin\YoutubeToBlog\Filament\Components\YouTubeApiKeyComponent;

YouTubeApiKeyComponent::getTab(),
```

Configuration
-------------

[](#configuration)

You can change the Model classes and file path settings via `config/youtube-to-blog.php`.

```
return [
    'disk' => 'attachments', // Disk where files will be uploaded
    'video_download_enabled' => true,
    'yt_dlp_path' => env('YT_DLP_PATH'),
    // ...
];
```

License
-------

[](#license)

MIT License

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance80

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

104d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f11e3bb1aee8416f2f7b655749c5b68d61ced142b245f4ada21e748872e64b07?d=identicon)[aytackayin](/maintainers/aytackayin)

---

Top Contributors

[![aytackayin](https://avatars.githubusercontent.com/u/17097808?v=4)](https://github.com/aytackayin "aytackayin (3 commits)")

---

Tags

apilaravelyoutubeblogfilamentchrome-extension

### Embed Badge

![Health badge](/badges/aytackayin-youtube-to-blog/health.svg)

```
[![Health](https://phpackages.com/badges/aytackayin-youtube-to-blog/health.svg)](https://phpackages.com/packages/aytackayin-youtube-to-blog)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[rupadana/filament-api-service

A simple api service for supporting filamentphp

204103.8k7](/packages/rupadana-filament-api-service)[specialtactics/l5-api

Dependencies for the Laravel API Boilerplate package

3672.8k2](/packages/specialtactics-l5-api)[tapp/filament-webhook-client

Add a Filament resource and a policy for Spatie Webhook client

1120.2k](/packages/tapp-filament-webhook-client)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
