
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (32)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7123)
-
How can we create a video by merging images with animation and music in php-ffmpeg ? or other way ?
10 décembre 2016, par Hardik JoshiI am looking for some way where you can merge images with animation and music in background same as you see in facebook 2016 year in review video. I am not sure but Is it possible using php-ffmpeg or php video toolkit http://sourceforge.net/projects/phpvideotoolkit/ if yes then how ?
Thanks -
How to Embed CEA-608 Subtitles in Video using FFMPEG
25 septembre 2018, par Yogesh AgarwalHow can i embed CEA 608 subtitles via ffmpeg in a video ? I have SRT file and i can embed that via ffmpeg but it doesnt show up in facebook. It requires a CEA 608 Format of subtitles to be embedded inorder to show up in streams.
I am quite clueless here. I found libcaption plugin that can do it, but i am not sure how to install it as my repo doesnt have it. Any Pointers would greatly help me ! :)
There is one more plugin
libass
which can hardcode but i am not comfortable using it.
-
Recording a website with PhantomJS and FFMpeg ?
18 novembre 2016, par Rjaibi MejdiI want to record a website using Phantomjs and use pipeline and FFMpeg to create a live video (Server or Stream URL)
runner.js code :
var page = require('webpage').create();
page.viewportSize = { width: 640, height: 480 };
page.open('http://www.goodboydigital.com/pixijs/examples/12-2/', function () {
setInterval(function() {
page.render('/dev/stdout', { format: "png" });
}, 25);
});Commande Line :
$ phantomjs runner.js | ffmpeg -y -c:v png -f image2pipe -r 24 -i - -c:v libx264 -pix_fmt yuv420p -threads 10 -movflags +faststart -b:v 3500k -bufsize 1024k -f flv "rtmp://rtmp-api.facebook.com:80/rtmp/1734882043502131?ds=1&s_l=1&a=AaYJ7cQfH719X5Kl"
The problem is that I get this error when I want to start a live stream in facebook :
In the preview mode is working
When I start the Live I got this message