
Recherche avancée
Autres articles (101)
-
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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)
Sur d’autres sites (13246)
-
Merging two videos via PHP
23 novembre 2023, par RyanSo, I'm trying to merge two files using PHP and I've taken a look at the FFMpeg library, yet I cannot manage to merge them. Here's what I've got so far :



$ffmpeg = FFMpeg\FFMpeg::create();
$vid1 = $ffmpeg->open('videos/vid1.mp4');
$vid2 = $ffmpeg->open('videos/vid2.mp4');




How do I stitch together
$vid1
and$vid2
and save them ?


Thanks


-
Merging two videos via PHP
17 mars 2017, par Ryan CastleSo, I’m trying to merge two files using PHP and I’ve taken a look at the FFMpeg library, yet I cannot manage to merge them. Here’s what I’ve got so far :
$ffmpeg = FFMpeg\FFMpeg::create();
$vid1 = $ffmpeg->open('videos/vid1.mp4');
$vid2 = $ffmpeg->open('videos/vid2.mp4');How do I stitch together
$vid1
and$vid2
and save them ?Thanks
-
FFMPEG - Video from Images
1er avril 2015, par scientifficI am using FFMPEG to create video from images. I would like the video to meet the following requirements :
- (1) The first image should last for 3 frames
- (2) The remaining images should last for 1 frame each
I know I can create a video that can output (1) with the following :
ffmpeg -r 5 -loop 1 -i img001.jpg -t 0.6 output1.mp4 -y
And I can create a video that can output (2) with the following :
ffmpeg -r 5 -i img%03d.jpg output2.mp4 -y
(where the current directory contains images in the format img001.jpg, img002.jpg, etc.)
Finally, I can stitch output1.mp4 and output2.together.
But I’d like a more efficient way to create the video. Is there a way I can generate a video combining (1) and (2) in one single command rather than stitching two separate videos together ?