PHPackages                             muhammadkazimsadiq/filament-video-importer - 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. muhammadkazimsadiq/filament-video-importer

ActiveLibrary

muhammadkazimsadiq/filament-video-importer
==========================================

This is my package filament-video-importer

1.0.0(2mo ago)162MITPHPPHP ^8.2CI failing

Since Mar 1Pushed 2mo agoCompare

[ Source](https://github.com/MuhammadKazimSadiq/filament-video-importer)[ Packagist](https://packagist.org/packages/muhammadkazimsadiq/filament-video-importer)[ Docs](https://github.com/muhammadkazimsadiq/filament-video-importer)[ GitHub Sponsors](https://github.com/MuhammadKazimSadiq)[ RSS](/packages/muhammadkazimsadiq-filament-video-importer/feed)WikiDiscussions 5.x Synced 1mo ago

READMEChangelogDependencies (10)Versions (2)Used By (0)

Filament Video Importer
=======================

[](#filament-video-importer)

[![Latest Version on Packagist](https://camo.githubusercontent.com/674699c73e104f5a53e33ee82fddfd4181f7df4e7fb02f6f3d6e793269fa85d6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d7568616d6d61646b617a696d73616469712f66696c616d656e742d766964656f2d696d706f727465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/muhammadkazimsadiq/filament-video-importer)[![Total Downloads](https://camo.githubusercontent.com/4a9a8eded2755a7b5aeb1fceb42efa66c99c342ff36f7316b0dfc5fad583129f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d7568616d6d61646b617a696d73616469712f66696c616d656e742d766964656f2d696d706f727465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/muhammadkazimsadiq/filament-video-importer)[![License](https://camo.githubusercontent.com/a2c4459a96825dc408d3e74eb8e9d45d8410f5a38d277f24056796d4cadea265/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6d7568616d6d61646b617a696d73616469712f66696c616d656e742d766964656f2d696d706f727465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/muhammadkazimsadiq/filament-video-importer)

The **Filament Video Importer** is a filament plugin that allows you to seamlessly import videos from **YouTube**, **Vimeo**, and **Bunny.net** directly into your Laravel database.

It features a modern, user-friendly 4-step wizard with field mapping intelligence and field discovery.

---

🚀 Key Features
--------------

[](#-key-features)

- **Multi-Platform**: Full support for YouTube, Vimeo, and Bunny.net (Stream).
- **Flexible Fetching**: Import entire playlists, folders, or specific video IDs.
- **Custom Mapping**: Customize mapping of API fields (Title, Duration, URL, etc.) to your custom database columns.
- **Background Imports**: Native support for **Laravel Queues** via a simple `->queue()` method.

---

📦 Installation
--------------

[](#-installation)

Install the package via composer:

```
composer require muhammadkazimsadiq/filament-video-importer
```

### 1. Configuration

[](#1-configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag="filament-video-importer-config"
```

---

⚙️ Configuration
----------------

[](#️-configuration)

### API Keys

[](#api-keys)

Add your credentials to your `.env` file:

```
YOUTUBE_API_KEY=your_youtube_key
VIMEO_ACCESS_TOKEN=your_vimeo_token
BUNNY_API_KEY=your_bunny_key
BUNNY_LIBRARY_ID=your_bunny_library_id
```

### Map Your Model

[](#map-your-model)

In `config/video-importer.php`, set the model where videos should be imported:

```
'model' => \App\Models\Video::class,
```

---

🛠️ Usage
--------

[](#️-usage)

Register the `ImportVideosAction` in your Filament Resource's `headerActions()` or inside any Table/Page action list.

```
use MuhammadKazimSadiq\FilamentVideoImporter\Actions\ImportVideosAction;

public static function table(Table $table): Table
{
    return $table
        ->headerActions([
            ImportVideosAction::make()
                ->label('Import Videos')
                ->queue(), // Enable background processing (Recommended for large playlists)
        ]);
}
```

---

🌍 Translations
--------------

[](#-translations)

The plugin supports multi-language setups. You can publish translations to customize them:

```
php artisan vendor:publish --tag="filament-video-importer-translations"
```

---

🤝 Credits
---------

[](#-credits)

- [Muhammad Kazim](https://github.com/MuhammadKazimSadiq)

📄 License
---------

[](#-license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance86

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

73d ago

Major Versions

1.0.0 → 5.x-dev2026-03-01

### Community

Maintainers

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

---

Top Contributors

[![MuhammadKazimSadiq](https://avatars.githubusercontent.com/u/37351104?v=4)](https://github.com/MuhammadKazimSadiq "MuhammadKazimSadiq (11 commits)")

---

Tags

laravelfilamentfilament-pluginfilamentphpMuhammadKazimSadiqfilament-video-importer

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/muhammadkazimsadiq-filament-video-importer/health.svg)

```
[![Health](https://phpackages.com/badges/muhammadkazimsadiq-filament-video-importer/health.svg)](https://phpackages.com/packages/muhammadkazimsadiq-filament-video-importer)
```

###  Alternatives

[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

254255.2k6](/packages/croustibat-filament-jobs-monitor)[relaticle/custom-fields

User Defined Custom Fields for Laravel Filament

15828.6k](/packages/relaticle-custom-fields)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)[defstudio/filament-searchable-input

A searchable autocomplete input for Filament forms

3212.4k](/packages/defstudio-filament-searchable-input)[agencetwogether/hookshelper

Simple plugin to toggle display hooks available in current page.

2312.7k](/packages/agencetwogether-hookshelper)

PHPackages © 2026

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