
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (102)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9955)
-
FFmpeg : Image scrolling, with green background ?
23 avril 2017, par John ReeseGood morning, I hope you are well.
Please, I need help with the following...
I’m moving an image vertically, and I see that the background of the video is green.
How can I change this background color ?Example code :
ffmpeg -loop 1 -t 24 -i "image.jpg" -filter_complex "nullsrc=size=640x360[background] ;[background][0:v]overlay=shortest=1:y=’min(0,-(t)*26)’" -qscale 1 -y out.mpg
Video Result : https://youtu.be/98rKLVO56wA
I hope I can help,
Thank you very much,
Greetings,
Hugo -
HLS for on demand streaming
15 septembre 2017, par Awais fiazI have been working on DASH (Dynamic adaptive streaming over http) in the past but as DASH is not supported on IOS based devices so i am moving to HLS (http live streaming) as it works on all devices.
I am in need of a guide of
HLS
for on demand streaming to understand encoding flow and techniques being used in this process.i am using
FFMPEG
as encoding libraryPHP
for server side scripting andapache2
as server.any help regarding this would be really appreciated thanks.
-
aggregate all frames into one image using ffmpeg
5 juin 2021, par SilentfuryIs there a way to get an overal min/max/average (per channel) image from all frames of a video ?


As a base/bottom layer for a video overlay I need a static aggregate (average, min or max per channel) of all frames of a video. The video is from a static camera so I expect a result with all non-moving objects sharp and and tiny motions being blurred away.


I played with the tmix filter and it more or less does what I want but only for a selected number of frames relative to the current frame (and for each resulting frame the computation is repeated unnecessarily).


How is this achievable ?