
Recherche avancée
Autres articles (66)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11870)
-
qsvvpp : Perform full init only when needed
2 septembre 2018, par Joe Olivasqsvvpp : Perform full init only when needed
Removing unused VPP sessions by initializing only when used in order to help
reduce CPU utilization.Thanks to Maxym for the guidance.
Signed-off-by : Joe Olivas <joseph.k.olivas@intel.com>
Signed-off-by : Maxym Dmytrychenko <maxim.d33@gmail.com>
Signed-off-by : Luca Barbato <lu_zero@gentoo.org> -
lavfi : fix can't dispaly "slice" sub-option in "ffmpeg -h full"
13 août 2018, par Jun Zhao -
Full C++ example avlib\FFMPEG multi input video filtering [on hold]
30 juillet 2018, par Stefan PintilieI am asking a question and also answering to it, on how to apply a multi input video complex filter using FFMPEG/avlib/avfiler libraries. I am doing this in hope that will help you, since it took couple of days to dig into ffmpeg code source, understanding it, putting the pieces together and make it work. The same could be applied to audio filtering.
Everything starting from translating the following ffmpeg command into C++ code :
ffmpeg -i world.mp4 -i back.png -filter_complex "[0:v]pad=1280:1000:0:0:black[pad];[pad][1:v]overlay=140:720[out]" -map "[out]" -map 0:a output.mp4
Is basically stacking 2 videos on top of each other. The video from bottom has bigger width, so the final video file has the width of the bottom video and the height of all 2 together.
Anyway that is just an example, the code example I am going to give you it takes any number of input files and a complex filter description, then producing the output.