
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (83)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (8260)
-
avcodec/h261dec : Don't set framerate multiple times
13 juin 2024, par Andreas Rheinhardt -
how split audio file in multiple chapters with predefined times
30 mars 2019, par Karim Bn Abdlazizhow split audio book file with in 10 chapters easier to listen , with given metadata predefined times
0.000000, 3472.683000 seconds this ch03472.683000, 7642.058000 ch1
etc..
2 columns the begin and end of each chapter,
i’m dummy but tried and failed with awk to add columns right and left to obtain the command line
ffmpeg -i output.mp3 -acodec copy -ss begin -to end ch'number'.mp3.
the problemn with the NF position and then increment numbers of new output files
how to use awk or sed and count new file names ch01 ch02 etc
-
FFmpeg Fade in and out video multiple times
26 mars 2020, par UsuallyHelplessI need to overlay a video multiple times. Let’s say that the overlay video is visible between 2-5 and 7-9 seconds with fading.
:
(Works) : Single fade in/out between 2-5 :
ffmpeg -i background.mp4 -i overlay.mp4 -filter_complex "[1:v]fade=in:st=2:d=1,fade=out:st=4:d=1[ovrl];[0][ovrl]overlay" out.mp4
(Doesn’t work) Double fade in/out between 2-5 and 7-9
ffmpeg -i background.mp4 -i overlay.mp4 -filter_complex "[1:v]format=rgba,fade=in:st=2:d=1,fade=out:st=4:d=1,fade=in:st=7:d=1,fade=out:st=8:d=1[ovrl];[0][ovrl]overlay" out.mp4
This makes the whole overlay video not appear at all. Not even in the first fade in/out.
:
Do I need to use the "enable(t,2,5)" ?
Or is it possible I need to somehow use the "overlay=alpha=" filter option ?