
Recherche avancée
Autres articles (82)
-
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 (10592)
-
lavc/flashsv2enc : Fix encoding resolution error message.
13 novembre 2014, par Carl Eugen Hoyos -
avfilter/vf_noise : fix high resolution support
16 octobre 2014, par Michael Niedermayer -
FFmpeg - Change resolution of the video with aspect ratio
10 août 2016, par Arthur Khusnutdinovall.
How to change resolution of the video with aspect ratio with FFmpeg ?
There are options
http://manpages.ubuntu.com/manpages/oneiric/man1/ffmpeg.1.html-s size
Set frame size. The format is wxh (ffserver default = 160x128,
ffmpeg default = same as source). The following abbreviations are
recognized:and
-aspect aspect
Set the video display aspect ratio specified by aspect.
aspect can be a floating point number string, or a string of the
form num:den, where num and den are the numerator and denominator
of the aspect ratio. For example "4:3", "16:9", "1.3333", and
"1.7777" are valid argument values.For example, I have two input videos :
- with 200*400 resolution
- with 400*700 resolution
I need to make output video with 100*200 resolution.
If I will run ffmpeg with -s 100x200, then second video will have bad aspect ratio.
How can I limit output video by width, with auto aspect ratio by height ?
For example, I want specify for the output video only width 100px and ffmpeg must automatically calculate height with right aspect ratio.
For first video it will be :
200/100=2
400/2=200
Ie 100x200
For second video it will be :
400/100=4
700/4=75
Ie 100x75
Is it possible ?