PHPackages                             yaroslawww/nova-chunked-video - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. yaroslawww/nova-chunked-video

Abandoned → [think.studio/nova-chunked-video](/?search=think.studio%2Fnova-chunked-video)Library[File &amp; Storage](/categories/file-storage)

yaroslawww/nova-chunked-video
=============================

Laravel Nova field to upload big size video using chunks.

3.0.3(2y ago)0541MITPHPPHP &gt;=8.1

Since Apr 22Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/nova-chunked-video)[ Packagist](https://packagist.org/packages/yaroslawww/nova-chunked-video)[ Docs](https://github.com/dev-think-one/nova-chunked-video)[ RSS](/packages/yaroslawww-nova-chunked-video/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependencies (7)Versions (11)Used By (0)

Laravel nova ChunkedVideo Field
===============================

[](#laravel-nova-chunkedvideo-field)

[![Packagist License](https://camo.githubusercontent.com/1a3bac4ff00e82eb3e8a54f11db36ec0a9276e0bd7ab83bebaf810324e965e55/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6e6f76612d6368756e6b65642d766964656f3f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/1a3bac4ff00e82eb3e8a54f11db36ec0a9276e0bd7ab83bebaf810324e965e55/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6e6f76612d6368756e6b65642d766964656f3f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/e1e9a373346aa0d5463c87d4025458742c29053d625edf345fe0a7173cb0a3dc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6e6f76612d6368756e6b65642d766964656f)](https://packagist.org/packages/think.studio/nova-chunked-video)[![Total Downloads](https://camo.githubusercontent.com/08e1852a536c0f0aef523685a5ef2a8203ee1fc2f6fef3a9c95b0eea737e0474/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6e6f76612d6368756e6b65642d766964656f)](https://packagist.org/packages/think.studio/nova-chunked-video)[![Build Status](https://camo.githubusercontent.com/4ad4224272e5c2d439a493cb30d4948139b05d6775685c77387f391c1b5c3357/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6368756e6b65642d766964656f2f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-chunked-video/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/ac930630042ccdd030564712b194fbb0f802ca3957fa5fc3eff2330e54277824/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6368756e6b65642d766964656f2f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-chunked-video/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/000cdb3ddc58d849d4d82c9c32352270b874565e043fa71e77553ebc2c9e0e64/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6e6f76612d6368756e6b65642d766964656f2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/nova-chunked-video/?branch=main)

Laravel Nova field to upload big size video using chunks.

[![](doc/assets/video-upload-example.gif)](doc/assets/video-upload-example.gif)

Versions targeting
------------------

[](#versions-targeting)

NovaPackageV1-3V1V4V2-3Installation
------------

[](#installation)

You can install the package via composer:

```
composer require think.studio/nova-chunked-video
# optional publish configs
php artisan vendor:publish --provider="NovaChunkedVideo\FieldServiceProvider" --tag="config"
```

Usage
-----

[](#usage)

```
\NovaChunkedVideo\ChunkedVideo::make( 'Video', 'big_video' )
    ->acceptedTypes( 'video/mp4' )
    ->disk( 'my_private_disk' )
    ->store( function ( $filePath, $disk, $model, $attribute, $request ) {
        // something like delete old video and save new
        $model->big_video = $filePath;
        $model->save();

        // WARNING: response should return url.
        return Storage::disk($disk)->url($filePath);
    } )
    ->preview( function ($value, $disk, $model ) {
        return Storage::disk($disk)->url($value);
    } )
    ->download(function (NovaRequest $request, Model $model, ?string $disk, $value) {
        return $value ? Storage::disk($disk)->download($value) : null;
    })
    ->delete(function (NovaRequest $request, $model, ?string $disk, $value) {
        if ($value) {
            Storage::disk($disk)->delete($value);
        }

        return true;
    })
    ->help( 'Usually a large video: 0.5-2GB. Max size 3GB' ),
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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 ~102 days

Recently: every ~73 days

Total

9

Last Release

1032d ago

Major Versions

1.x-dev → 2.0.02022-06-08

2.1.2 → 3.0.12023-07-16

PHP version history (2 changes)1.0.0PHP &gt;=7.4

2.0.0PHP &gt;=8.1

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23663794?v=4)[yaroslawww](/maintainers/yaroslawww)[@yaroslawww](https://github.com/yaroslawww)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (12 commits)")

---

Tags

laravelvideouploadnovachunks

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-nova-chunked-video/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-nova-chunked-video/health.svg)](https://phpackages.com/packages/yaroslawww-nova-chunked-video)
```

###  Alternatives

[digital-creative/nova-filepond

A Nova field for uploading File, Image and Video using filepond.

5568.0k1](/packages/digital-creative-nova-filepond)[oneduo/nova-file-manager

A handy file manager tool for Laravel Nova

157350.3k2](/packages/oneduo-nova-file-manager)[ahmedkandel/nova-s3-multipart-upload

A Laravel Nova s3 multipart upload tool.

2547.2k](/packages/ahmedkandel-nova-s3-multipart-upload)[stepanenko3/nova-filemanager

File manager tool for Laravel Nova

1633.5k2](/packages/stepanenko3-nova-filemanager)

PHPackages © 2026

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