
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (78)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (6798)
-
Find Percentage of differences between two Videos Using FFMPEG
5 novembre 2015, par JaiI am working with Video comparison using ffmpeg on java. I would like to know there is any option available for Find the Percentage of differences between two Videos Using ffmpeg.
-
Find Percentage of difference between two Videos Using FFMPEG
6 novembre 2015, par JaiI am working with Video comparison using ffmpeg on java. I have videos name "video1 and Video2". I can find the difference between two video using ffmpeg.
It shows the result Video with difference. But here I want to find how many percent (ie : 20%) Video1 different from Video2. How to achieve this ?
-
Blending pairs of images into a video with ffmpeg ?
11 mars 2014, par Ken StuartWe currently use ffmpeg to generate timelapse videos from a series of stills, however we would like to smooth the output from one frame to the next. So far, the best way to do this appears to be blending each pair of frames together, but it's not clear how to do this with ffmpeg.
Here's what we use now :
ffmpeg -f image2 -r 5 -i img%03d.jpg -s 640x480 -mbd rd -flags +mv4+aic -trellis 2 -cmp 2 -subcmp 2 -g 300 -y aaa.mp4
How can we generate a smoother timelapse ? Is there a filter that will blend each pair of images, thus making the movie have twice as many frames (e.g., 1 + 2 + 3 + 4 becomes 1 + 1&2 + 2 + 2&3 + 3 + 3&4 + 4) ? If so, where would that go in our ffmpeg invocation ?
Pointers would be most appreciated !
-Ken