
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (57)
-
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 (3239)
-
doc/general : move contents into a separate file.
22 août 2020, par Nicolas George -
fftools/ffmpeg_filter : Fix autorotation
18 décembre 2021, par Andreas Rheinhardtfftools/ffmpeg_filter : Fix autorotation
In case of an orthogonal transformation av_display_rotation_get()
returns the (anticlockwise) degree that the unit vector in x-direction
gets rotated by ; get_rotation in cmdutils.c makes a clockwise degree
out of this. So if one inserts a transpose filter corresponding to
this degree, then the x-vector gets mapped correctly and there are
two possibilities for image of the y-vector, namely the two unit
vectors orthogonal to the image of the x-vector.E.g. if the x-vector gets rotated by 90° clockwise, then the two
possibilities for the y-vector are the unit vector in x direction
or its opposite. The latter case is a simple 90° rotation for both
vectors* whereas the former is a simple 90° clockwise rotation followed
by a horizontal flip. These two cases can be distinguished by looking
at the x-coordinate of the image of the y-vector, i.e. by looking
at displaymatrix[3]. Similarly for the case of a 270° clockwise
rotation.These two cases were previously wrong (they were made to match
wrongly parsed exif rotation tag values).* : For display matrices, the y-axis points downward.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
JavaCV transpose FFmpegFrameFilter is not working properly
5 janvier 2018, par Aks4125I am able to rotate video but facing issue in rotating as per documentation.
I tried to hardcode filter as following.
FFmpegFrameFilter frameFilter = new FFmpegFrameFilter("transpose=cclock",
previewWidth, previewHeight);According to documentation,
transpose=cclock
filter should rotate video counter clockwise 90degree. but it is rotating video for 180 degree.I also tried to use
transpose=0/1/2/3
- 0 = 90CounterCLockwise and Vertical Flip (default) (this does nothing)
- 1 = 90Clockwise (even this is also does nothing)
- 2 = 90CounterClockwise (this is rotating video at 180 degree)
- 3 = 90Clockwise and Vertical Flip (this behaves same as value2 : 120 degree rotation)
For example
FFmpegFrameFilter frameFilter = new FFmpegFrameFilter("transpose=2",
previewWidth, previewHeight);This accepted answer is also not working.
In short All i want, is rotate video 90 degree counter clockwise. which I am not able to achieve.
Library used for JavaCV : https://github.com/bytedeco/javacv