- Date: <DATE - when the decision was made>
- Deciders: <DECIDERS - list everyone involved in the decision>
- Status: [PROPOSED | ACCEPTED | SUPERSEDED | DEPRECATED]
- Category: <CATEGORY - use a simple grouping to help organize the set of decisions (e.g. backend, payment, user management, ...)>
Relies on some *nix CLI utilities: mediainfo
; and qt-faststart
(part of ffmpeg
). I used homebrew to install them on OS X.
Pseudo streaming is simply a video that can start playing before it's fully dowmloaded. The videos are not streaming but rather progressively downloaded. What's important is that the file metadata (the Moov Atom) is at the start of the file rather than at the end. Usually this is an option set when encoding the file (called quick start or web start). If the files have not been encoded this way you can either re-encode or use a utility to move the Moov Atom. Re-encoding takes much longer than using a utility to move the Moov Atom so here's how to do it.
First check with mediainfo
to see if video 'is streamable':
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Fk\Core\Infrastructure\Bundle; | |
use Symfony\Component\HttpKernel\Bundle\Bundle; | |
/** | |
* The compact bundle combines a bundle definition with an {@link ExtensionInterface} to provide sound defaults for | |
* implementing custom bundles. | |
*/ | |
abstract class CompactBundle extends Bundle |