2017 © Pedro Peláez
 

library devtube

A Laravel package for downloading videos from the net by simply passing a URL

image

devswebdev/devtube

A Laravel package for downloading videos from the net by simply passing a URL

  • Tuesday, May 29, 2018
  • by DevinNorgarb
  • Repository
  • 2 Watchers
  • 6 Stars
  • 108 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 2 Open issues
  • 9 Versions
  • 29 % Grown

The README.md

Install DevTube Video Downloader

Install FFMPEG only if you want to convert videos to mp3 etc, (*1)

Ubuntu:, (*2)

sudo apt install ffmpeg

Install youtube-dl, (*3)

sudo apt install youtube-dl

Install via composer, (*4)

composer require devswebdev/devtube

Publish vendor assets, (*5)

php artisan vendor:publish --provider="DevsWebDev\DevTube\DevTubeServiceProvider"

This publishes a devtube.php file in your config/ directory Please set your default options there., (*6)

Make sure your youtube-dl path is correct by comparing the output of which youtube-dl to the bin_path in devtube.php, (*7)

"bin_path" => "/usr/bin/youtube-dl",

An Example, (*8)


namespace App\Http\Controllers; use DevsWebDev\DevTube\Download; class YoutubeDownloadController extends Controller { public function download() { $dl = new Download($url = "https://www.youtube.com/watch?v=ye5BuYf8q4o", $format = "mp4", $download_path = "music" ); //Saves the file to specified directory $media_info = $dl->download(); $media_info = $media_info->first(); // Return as a download return response()->download($media_info['file']->getPathname()); } }

Or in your web.php routes file, (*9)

use DevsWebDev\DevTube\Download;

Route::get('/', function () {
    $dl = new Download($url = "https://www.youtube.com/watch?v=ye5BuYf8q4o", $format = "mp3", $download_path = "music" );

    //Saves the file to specified directory
    $media_info = $dl->download();
    $media_info = $media_info->first();

    // Return as a download
    return response()->download($media_info['file']->getPathname());

});

The Versions

29/05 2018

dev-master

9999999-dev

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

29/05 2018

dev-add-code-of-conduct-1

dev-add-code-of-conduct-1

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

28/05 2018

dev-development

dev-development

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

27/05 2018

1.0.5

1.0.5.0

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

27/05 2018

1.0.4

1.0.4.0

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

27/05 2018

dev-feature/convert-to-mp3

dev-feature/convert-to-mp3

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

07/05 2018

1.0.3

1.0.3.0

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

07/05 2018

dev-queuedownloads

dev-queuedownloads

A Laravel package for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb

laravel mp4 youtube-downloader downloader youtube-dl laravel-package devtube devswebdev

05/05 2018

dev-feature/searchpage

dev-feature/searchpage

A Laravel library for downloading videos from the net by simply passing a URL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar DevinNorgarb