
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (45)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7781)
-
Revision 59408 : Au final si... c’était nécessaire
16 mars 2012, par kent1@… — LogAu final si... c’était nécessaire
-
ffmpeg command for create final video from two different videos and two different audios
16 décembre 2020, par Kashyap RathodI have two videos and two audios


1 :-
video 1 - length :- 60 sec || audio 1 - length :- 15 sec


2 :-
video - length :- 86 sec || audio 2 - length :- 18 sec


Play video1 and audio1 together, if audio1 is ended then restart that audio till video1 end. this will final video 1.


same way,


play video2 and audio2 together, if audio2 is ended then restart that audio till video2 end. this will final video 2.


after that concatenate those final video 1 and final video 2 and create single video as output.


Thank you in advance.


-
Extract final frame from a video using ffmpeg
14 mai 2020, par SaavestroI know how to extract the first frame by using



ffmpeg -ss 00:00:00 -i input.mp4 -vframes 1 -q:v 31 output.png



Here, the option
-ss
requires to know the exact time of the frame to extract.


I would like to have the final frame of any .mp4 without knowing the exact final time of the video.



Is there a way to achieve this ?