
Recherche avancée
Autres articles (97)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
ANNEXE : Les extensions, plugins SPIP des canaux
11 février 2010, parUn plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
Les extensions que MediaSPIP nécessite pour fonctionner
Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)
Sur d’autres sites (7466)
-
How can i have a good frame quality with PHP5-FFMPEG ?
13 mars 2012, par YeppaoI'm trying tu use PHP5-FFMPEG in my website, but when i try to take some frame of any movie, the quality of this frame is really poor...
Here's the simply way i use to write this frames into images.
$frame = $mov->getFrame($_GET['frame']);
$img = $frame->toGDImage();
header("Content-type: image/jpeg");
imagejpeg($img);Can i have a better quality with this extension ? Or I have to invoke a ffmpeg command line ?
Image link :
http://i.stack.imgur.com/OKXUj.jpg -
Ffmpeg & PHP - Small Clip with Good Quality
14 novembre 2013, par FakeHealwhat are the best options to keep video in nearly good quality while converting it to flv and shrinking its size ?
I use the followin code now :
exec("ffmpeg -i $faila -sameq -s 600x450 -ar 44100 $file_final");
-
Good library for encoding videos in a dynamic language ?
8 novembre 2011, par RyanI'm looking for an effective library for encoding videos. I would prefer something in one of the Ruby/Python ilk type languages, but I'd use libraries in C or PHP that were good. Essentially, I'm looking for something that wraps ffmpeg, and would allow me to convert H.264 .mp4's into .theora.ogv, .webm, and (this would be nice) .flv files.
Worst case, I could always just use any language to natively execute ffmpeg, using something like command("ffmpeg -i ...etc."), but I'd prefer something a bit higher level/in-language if possible.
I've already looked at RVideo, but couldn't get it to work correctly.