
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (67)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10761)
-
Jwplayer function snapshot using ffmpeg and php
27 octobre 2013, par Offboardbefore anything I'm using version 6, then the Snapshot plugin does not work.
I'm finally with 2 questions, take a sequence of photos of a percentage of the video, so googled it and got this code from ffmpeg :
ffmpeg -i video.mp4 -r 0.5 -f image2 output-%05d.jpeg
so far so good, but I do not know how to take a screen shot of the video by setting the time, if I'm right this code is per frame.
I searched again to get the function that calls the images, to generate good is quite simple, but the problem is that I found the pictures looks is all in one look.
if anyone has any function or know how to do please tell me : D
My English sucks, so do not call if I messed up. -
Landscape video from portrait images using ffmpeg
19 janvier 2014, par XXXI have a series of pictures taken in portrait mode with a resolution of 480x800. I made video using ffmpeg command
ffmpeg -r 1 -y -i image%d.jpeg out.mp4
And I get video in landscape mode with a resolution 480x800 and 4:3, and therefore the image of video is stretched laterally. How to make that video is not stretched and the sides were black stripes ? -
FFMPEG converts HEVC with Alpha mov to PNG sequence not work well
22 juillet 2023, par topfortuneI have a mov file with HEVC with Alpha codec on Mac. The mov file has no background color, but have some foreground contents in it. I want to use FFMPEG to grab some PNG pictures from it. Following is the command line I used to grab the first image from the video.


ffmpeg -i hevc-alpha-video.mov -r 1 -pix_fmt rgba -frames:v 1 out.png


I can get the output PNG picture. But it has black background color. What I want is the transparent background PNG picture.


Do you have any idea to handle this ? Thanks.