All Projects → irazasyed → video-downloader

irazasyed / video-downloader

Licence: MIT License
Video Downloader for Facebook.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to video-downloader

Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (+406.35%)
Mutual labels:  composer, lumen, laravel-package, laravel-5-package, composer-packages
Laravel Server Monitor
Server Monitoring Command for Laravel Applications
Stars: ✭ 424 (+573.02%)
Mutual labels:  composer, laravel-package, laravel-5-package, composer-packages
Telegram Bot Sdk
🤖 Telegram Bot API PHP SDK. Lets you build Telegram Bots easily! Supports Laravel out of the box.
Stars: ✭ 2,212 (+3411.11%)
Mutual labels:  composer, laravel-package, laravel-5-package, composer-packages
Package Skeleton
📦 My base for PHP packages.
Stars: ✭ 6 (-90.48%)
Mutual labels:  package, composer, laravel-package
Bash2mp4
Video Downloader for Termux .
Stars: ✭ 68 (+7.94%)
Mutual labels:  downloader, facebook, video-downloader
devtube
Laravel YouTube and Online Video viewing and download interface.
Stars: ✭ 30 (-52.38%)
Mutual labels:  video-downloader, laravel-package, laravel-5-package
Laravel Pdf
A Simple package for easily generating PDF documents from HTML. This package is specially for laravel but you can use this without laravel.
Stars: ✭ 79 (+25.4%)
Mutual labels:  package, laravel-package, laravel-5-package
facebook-go-sdk
A very simple and easy-to-use Facebook SDK for Golang.
Stars: ✭ 18 (-71.43%)
Mutual labels:  facebook, fb, fb-api
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+4163.49%)
Mutual labels:  package, laravel-package, laravel-5-package
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (+214.29%)
Mutual labels:  package, laravel-package, laravel-5-package
Laravel Messenger
Simple user messaging package for Laravel
Stars: ✭ 2,140 (+3296.83%)
Mutual labels:  package, composer, composer-packages
response
Response HTTP package for Simfony, Laravel, Lumen and PHP 7 with standard REST API
Stars: ✭ 14 (-77.78%)
Mutual labels:  package, lumen, laravel-package
VKRdownloader
Vkrdownloader: All in one Video Downloader - Download videos from facebook twitter youtube tiktok and 1000+ other sites . YouTube downloader , facebook downloader . made by Vijay Kumar
Stars: ✭ 25 (-60.32%)
Mutual labels:  downloader, facebook, video-downloader
Base62
PHP Base62 encoder and decoder for integers and big integers with Laravel 5 support.
Stars: ✭ 16 (-74.6%)
Mutual labels:  composer, laravel-package, laravel-5-package
sms
Simple SMS Gateway Package for sending short text messages from your Application. Facade for Laravel 5(Updated to work with Laravel 5.5).Currently supported Gateways Clickatell, MVaayoo, Gupshup, SmsAchariya, SmsCountry, SmsLane, Nexmo, Mocker / Any HTTP/s based Gateways are supported by Custom Gateway. Log gateway can be used for testing.
Stars: ✭ 41 (-34.92%)
Mutual labels:  laravel-package, laravel-5-package
laravel-repoman
Set a payment deadline for the customer
Stars: ✭ 14 (-77.78%)
Mutual labels:  package, laravel-package
artisan-shortcuts
🍰 Register shortcuts to execute multiple artisan commands
Stars: ✭ 56 (-11.11%)
Mutual labels:  laravel-package, laravel-5-package
panichd
Ticketing system for Laravel 5.1 - 8.x. Allows to create new tickets via form only. Includes file attachments, ticket tags, filtering, scheduling and e-mail notifications.
Stars: ✭ 78 (+23.81%)
Mutual labels:  laravel-package, laravel-5-package
devliver
Your private self hosted composer repository with user management
Stars: ✭ 50 (-20.63%)
Mutual labels:  package, composer
Laravel-Unsplash-Wrapper
A Laravel wrapper for Unsplash API's.
Stars: ✭ 21 (-66.67%)
Mutual labels:  laravel-package, laravel-5-package

Video Downloader

Join PHP Chat Chat on Telegram Latest Version on Packagist Software License Quality Score Total Downloads

Video Downloader Package for Facebook. Automatically generates download links for HD and SD quality & lets you download them. Comes with Laravel Support out of the Box!

Install

Via Composer

$ composer require irazasyed/video-downloader

Usage

getVideoInfo Method:

Get Video Info By Video ID:

$downloader = new Irazasyed\VideoDownloader\Factory('facebook');
$videoInfo = $downloader->getVideoInfo('10154015752566729');

Get Video Info By URL:

$videoUrl = 'https://www.facebook.com/facebook/videos/vl.515712155263726/10154015752566729/?type=1&theater';

$downloader->getVideoInfo($videoUrl);

Example Response:

$response = [
  "title" => "Facebook" // Video Title if exists, Page Title otherwise.
  "description" => "Is seeing the world on your mind?" // Video Caption
  "owner" => "Facebook" // Uploader Name
  "created_time" => "1441004460" // Unix Time
  "hd_link" => "<HD MP4 LINK>"
  "sd_link" => "<SD MP4 LINK>"
];

Supported URL Types (HTTP/HTTPS):

Download Method:

$isAsyncRequest = true;
$downloader->download('Remote_File_URL', '/path/to/destination/filename.mp4', $isAsyncRequest);

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

Disclaimer

This project and its author is neither associated, nor affiliated with Facebook in anyway. Use of this project is at your own risk and subject to the license of this project. This is simply an experimental project. It is highly recommended to go through the Automated Data Collection Terms of Facebook & the License section of this project for more information.

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].