
Recherche avancée
Autres articles (91)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (14426)
-
FFMPEG build error when building app on OS X
26 juillet 2014, par konstiI installed FFMPEG on OS X 10.9 with homebrew (and earlier with macport) and the ffmpeg command in console is working. But when trying to include it to my XCode project and building my Mac app I get build errors :
#include
#includestdarg.h
User defined issues
This header only supports __MWERKS__.
When trying to add it as preprocessor macro I get more errors stating that mw_stdarg.h file not found. Did I miss some configuration somewhere ? Please help :)
-
Revision 56435bb7b6 : Add skin detection. Simple skin detection, from vp8 ; works reasonable on most o
3 février 2015, par MarcoChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Add /vp9/encoder/vp9_skin_detection.c
Add /vp9/encoder/vp9_skin_detection.h
Modify /vp9/vp9cx.mk
Add skin detection.Simple skin detection, from vp8 ; works reasonable on most of the
RTC clips, but could miss sometimes.Added debug flag to write out skin map over source input.
Change-Id : I2caea7592f1c459047aac46627eeb24a94946464
-
Ffmpeg only saves files but don't re transmit the stream in node
3 juin 2018, par sonseiyaam using ffmpeg to get a video stream, save a file and re send to another machine.
Basicaly i am using the following command :
ffmpeg -timeout 60 -i udp://192.168.0.12:3000 -c:v libx264 -c:a mp2
-f tee -map 0:v -map 0:a
"[onfail=ignore]6067_20180602_214828.ts|[f=mpegts]udp://192.168.0.12:4000"The file is being generating perfectly, my problem is that i am not getting the udp stream when i try to test it using vlc.
Did i miss something ?
I get the command from : https://ffmpeg.org/ffmpeg-formats.html#tee
Regards