Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 830 Bytes

README.md

File metadata and controls

48 lines (40 loc) · 830 Bytes

YouTube Downloader PHP

Make your own YouTube Downloader Mp3 Site

Requisites

Install ffmpeg & yt-dlp in linux for Video and Audio convertions

Linux

sudo apt install ffmpeg yt-dlp -y

Mac

brew install ffmpeg yt-dlp

Install Website

Copy distributed environment file, and setup DB variables

cp .env.example .env

Run composer, set key and run migrations

composer install
php artisan key:generate
php artisan migrate

Local test

php artisan serve

Login

Disable Auth in HomePage

Login Just comment this line __construct of HomeController.php

//$this->middleware('auth');