
Recherche avancée
Autres articles (84)
-
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 (...) -
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 (...) -
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 (15526)
-
How to use stack filters in fluent-ffmpeg
19 septembre 2018, par AbhilashI have executed the below code with ffmpeg to create an output with two input videos side by side and their audio combined.
ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "[0:v][1:v] hstack=inputs=2[v]; [0:a][1:a] amerge [a]" -map "[v]" -map "[a]" -ac 2 -shortest output.mp4
Can any one please tell me what is it’s equivalent code in fluent-ffmpeg used in nodejs ?
-
vp9 : don’t keep a stack pointer if we don’t need it.
6 octobre 2015, par Ronald S. Bultjevp9 : don’t keep a stack pointer if we don’t need it.
This saves one register in a few cases on 32bit builds with unaligned
stack (e.g. MSVC), making the code slightly easier to maintain.(Can someone please test this on 32bit+msvc and confirm make fate-vp9
and tests/checkasm/checkasm still work after this patch ?) -
How to stack 2 raw videos ( YUV ) horizontally, using ffplay & lavfi ?
1er juillet 2024, par Pranav SodhaniI know how to stack 2 videos horizontally when they are in a container format using the following ffplay command :


ffplay -f lavfi “movie=movie1.mov[v0];movie=movie2.mov[v1];[v0][v1]hstack"



If my videos, however, are in YUV-format where can I specify the
pix_fmt
&video_size
flags ?