Download the PHP package martin1982/live-broadcast-bundle without Composer

On this page you can find all versions of the php package martin1982/live-broadcast-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package live-broadcast-bundle

Live Broadcast Bundle

Build status Latest stable version

License Total downloads

Table of contents

About

The Live Broadcast Bundle will make it possible to plan live video streams to various websites/apps like Twitch, YouTube Live, Facebook Live.

You are able to stream from various inputs. This package supports files, URLs or existing RTMP streams.

For more info you can view the latest recorded presentation below, check the demo project at https://github.com/Martin1982/live-broadcast-demo or read on;

IMAGE ALT TEXT

Prerequisites

To test these prerequisites the Symfony command livebroadcaster:test:shell can be used after the installation described below. If you like to check this manually the Broadcaster needs a few commands on an operating system;

All OS's:

On Linux:

On Mac:

On Windows:

Basic installation

This bundle is available on Packagist. You can then install it using Composer:

Use Doctrine to update your database schema with the broadcasting entities, when upgrading it is recommended to use migrations.

To start the broadcast scheduler you can run the following command:

To run the scheduler as a long-running process it's recommended to use the messenger middleware to keep the database connection alive as described at https://symfony.com/doc/current/messenger.html

FFMpeg log directory

To view the output of FFMpeg you need to configure a log directory in your config/packages/live_broadcast.yaml.

 live_broadcast:
    ffmpeg:
        log_directory: '%kernel.logs_dir%'

Event loop

You can use this configuration to set the event loop timer:

live_broadcast:
    eventloop:
        timer: 5

Thumbnailer setup

Set up the following config for thumbnails:

live_broadcast:
    thumbnail:
        upload_directory: '%kernel.project_dir%/public/uploads/thumbnails'
        web_path: '/uploads/thumbnails'

Enabling Facebook Live

Create a Facebook app on https://developers.facebook.com with the following permissions:

Edit your config/packages/live_broadcast.yaml with the following configuration:

live_broadcast:
    facebook:
        application_id: YourFacebookAppId
        application_secret: YourFacebookAppSecret

Enabling YouTube Live

Login to https://console.developers.google.com/ and enable the 'YouTube Data API v3'.

Add the YouTube API info to your config.yml:

live_broadcast:
    youtube:
        client_id: YourGoogleOauthClientId
        client_secret: YourGoogleOauthClientSecret

Add these lines to your parameters.yml (used for generating a thumbnail URL)

parameters:
    router.request_context.host: broadcast.com
    router.request_context.scheme: https

Add new output platforms

Create a new Channel Entity in Entity/Channel that extends the AbstractChannel (e.g. ChannelNew)

Create a new StreamOutput service in Service/StreamOutput that implements the OutputInterface (e.g. OutputNew)

Configure the service with the output tag in config/services.yml

live.broadcast.output.new:
    class: Martin1982\LiveBroadcastBundle\Service\StreamOutput\OutputNew
    tags:
        - { name: live.broadcast.output, platform: 'New' }

Using an admin GUI

This bundle comes without a web frontend interface, to make use of an admin package you can pick the one to your liking;

Sponsors


All versions of live-broadcast-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
ext-fileinfo Version *
doctrine/doctrine-bundle Version ^2.0
doctrine/orm Version ^2.7
martin1982/facebook-graph-sdk Version ^7.0.1
google/apiclient-services Version *
google/apiclient Version ^2.7
psr/log Version ^3.0
react/event-loop Version ^1.1
symfony/console Version ^5.4|^6.0
symfony/framework-bundle Version ^5.4|^6.0
symfony/http-kernel Version ^5.4|^6.0
symfony/monolog-bundle Version ^3.5
symfony/validator Version ^5.4|^6.0
symfony/yaml Version ^5.4|^6.0
symfony/messenger Version ^5.4|^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package martin1982/live-broadcast-bundle contains the following files

Loading the files please wait ....