GithubHelp home page GithubHelp logo

laravel-video-embed's Introduction

Laravel Video Embed

A simple wrapper for dereuromark/MediaEmbed to generate embed HTML for popular media hosting services. + Thumbnail function based on Joe1992w/laravel-media-embed.

Installation

composer require merujan99/laravel-video-embed:dev-master

OR

"require": {
    "merujan99/laravel-video-embed": "dev-master",
},
composer install

Service Provider

'providers' => [
    // Others...
    Merujan99\LaravelVideoEmbed\Providers\LaravelVideoEmbedServiceProvider::class,
],

Facade

'aliases' => [
    // Others...
    'LaravelVideoEmbed' => Merujan99\LaravelVideoEmbed\Facades\LaravelVideoEmbed::class,
],

Publish configuration settings

After completing the step above, use the following command to publish configuration settings:

php artisan vendor:publish --provider="Merujan99\LaravelVideoEmbed\Providers\LaravelVideoEmbedServiceProvider"

then just add

use LaravelVideoEmbed;

this in your controller

Usage

//URL to be used for embed generation
$url = "https://www.youtube.com/watch?v=8eK-5ivYb3o";

//Optional array of website names, if present any websites not in the array will result in false being returned by the parser
$whitelist = ['YouTube', 'Vimeo'];

//Optional parameters to be appended to embed
$params = [
    'autoplay' => 1,
    'loop' => 1
  ];

//Optional attributes for embed container
$attributes = [
  'type' => null,
  'class' => 'iframe-class',
  'data-html5-parameter' => true
];

return LaravelVideoEmbed::parse($url, $whitelist);
// "<iframe src="https://www.youtube.com/embed/8eK-5ivYb3o?wmode=transparent" type="text/html" width="480" height="295" frameborder="0" allowfullscreen></iframe>"

return LaravelVideoEmbed::parse($url);
// "<iframe src="https://www.youtube.com/embed/8eK-5ivYb3o?wmode=transparent" type="text/html" width="480" height="295" frameborder="0" allowfullscreen></iframe>"

return LaravelVideoEmbed::parse($url, ['Vimeo']);
// false

return LaravelVideoEmbed::parse($url, $whitelist, $params, $attributes)
//<iframe src="https://www.youtube.com/embed/8eK-5ivYb3o?wmode=transparent&amp;autoplay=1&amp;loop=1" type="" width="480" height="295" frameborder="0" allowfullscreen class="iframe-class" data-html5-parameter></iframe>

return LaravelVideoEmbed::getYoutubeThumbnail($url)
//https://<youtube image thumbnail with max resolution>. usage: <img src="{{ LaravelVideoEmbed::getYoutubeThumbnail($url) }}"> 

Supported Hosts

Please see dereuromark/MediaEmbed

Supported Website Whitelist names

Name
YouTube
Facebook
Dailymotion
MetaCafe
Vimeo
123video
5min Life Videopedia
AdultSwim
AniBoom
AOL Video (Old)
Aparat
Archive.org
Atom
Blastro
$2
BoFunk
Break
Brightcove.com
CBS News
Cellfish
Clarin
Clip.vn
ClipFish (Old)
ClipFish (Special)
ClipFish (New)
ClipJunkie
ClipMoon
ClipShack
CNetTV
CollegeHumor
TheDailyShow
ColbertNation
Crackle
CrunchyRoll
Current
Dailyhaha
Dave.tv
DotSub (w/o Captions)
DoubleViking
dropshots.com
Dv.ouou
Divshare
EASportsWorld
EbaumsWorld
ESPN
Fandome
Flickr
Foxhead
FunnyOrDie
FunMansion
G4TV
GameKyo
GameSpot
GameTrailers (Inc. User Movies)
Gametube.org
GameVideos.1up
GarageTv
Gloria
GoEar
Good.IS
Glumbert
GodTube
GrindTv
Guzer
TheHub
Howcast
Hulu (Usa Only)
Humour
Video.i.ua
IGN
iJigg
IMDB
ImageShack
IndyaRocks
iReport
Izlesene
Jamendo
Jokeroo
JujuNation Video
JujuNation Audio
JustinTV
Kewego
Koreus
Last.fm (Audio)
Last.fm (Video)
Libero
LiveLeak
LiveVideo
MSNBC
Video.mail.ru
MadnessVideo
Metatube
MotionBox
Mpora
Mp3tube
MtvU (Usa Only)
MP3 Audio
MyNet
MyShows.cn/SeeHaha.com
MySpaceTv
MyVideo
MyVi
M Thai
NewGrounds
NhacCuaTui
OnSmash
Orb
Photobucket
PikNikTube
Project Playlist
Putfile
Rambler
RawVegas
RuTube
Screencast
ScreenToaster
SevenLoad
ShareView
Sharkle
Smotri
Snotr
SouthPark Studios
Space.tv.cctv.com
Spike
Songza
Streetfire
StupidVideos
TagTélé
Ted.com
The Onion
TinyPic
Todays Big Thing
TrailerAddict
TrTube
Trilulilu
Tu.tv
Tudou
Tumblr (Music)
Twitvid
UOL VideoLog
u-Tube
Ustream
VideoJug
videos.sapo
Vidiac
Viddler
Videa
VidiLife
VidMax
Vidivodo
VoiceThread
WeGame
Webshots (Slideshows)
Wistia
Yahoo Video HK
Yahoo Video
Yahoo Music Videos
YouKu
sina video
XVideos
Local Content

laravel-video-embed's People

Contributors

merujan99 avatar nivv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

laravel-video-embed's Issues

I want to know more about this

Im looking for ways to embed a youtube video player into my own Laravel project a user would click a link and it should not redirect them to youtube but it should all be done within the website, they should be able to select a video and then once it's done get redirecte to the main page, is this possible with this plug in? Thanks! P.S: if you have a demo or a tutorial for this I would love to see, thanks!

Attributes are not parsed correctly.

If i add attributes to the command they dont appear in the html source code.
I checked the file "LaravelVideoEmbed.php" in the Services-Directory and it seems that the if(is_array() is set wrong:

i tried to correct this from $params to $attributes but it doesnt change anything. Maybe you can fix this?

      if(is_array($attributes))
      {
        $MediaObject->setAttribute($attributes);
      }

Unable to locate publishable resources.

Hi, I'm using laravel 7.
I was following the installations instructions and when I ran this:

php artisan vendor:publish --provider="Merujan99\LaravelVideoEmbed\Providers\LaravelVideoEmbedServiceProvider"

I got this error message

Unable to locate publishable resources.

Any ideas?
Thanks

add publish configuration in readme file

After completing the step above, use the following command to publish configuration settings:

php artisan vendor:publish --provider="Merujan99\LaravelVideoEmbed\Providers\LaravelVideoEmbedServiceProvider"

then just add

use LaravelVideoEmbed;

this your controller

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.