
Recherche avancée
Autres articles (59)
-
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 (6128)
-
Meaningful thumbnails for a Video using PHP-FFMpeg (Laravel 5)
10 juillet 2015, par JungleGeniusI’m working on a project using Laravel 5 and the PHP-FFmpeg Library.
Previously someone else asked this question "Meaningful thumbnails for a Video using FFmpeg" that works from the command line.
However, I want to implement the functional equivalent using the PHP-FFmpeg Library.
I have scanned both Stack Overflow and the Unit Tests for PHP-FFmpeg to try and figure out the correct syntax, but it is just not jumping out at me.
So I’m hoping someone with more experience with PHP-FFmpeg can give me some pointers or an example of how to achieve the same results as the command line calls referenced in this post : "Meaningful thumbnails for a Video using FFmpeg".
Thanks in advance for everyone’s help.
BTW, This is my first post on Stack Overflow so the site won’t let me post all the relevant links (limit 2) or create a tag for "PHP-FFmpeg".
-
avformat/utils : Redesign scoring in av_find_default_stream_index()
1er juillet 2015, par Michael Niedermayeravformat/utils : Redesign scoring in av_find_default_stream_index()
This avoids empty streams from being selected if a equivalent non empty one is available
The new system is also clearer and more systematic
This may need finetuning, which should be easy to do ...Fixes Ticket2687
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
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 ?