
Recherche avancée
Autres articles (71)
-
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 -
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
Sur d’autres sites (12929)
-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
Extract Motion Vectors From x264 source code
27 mai 2021, par Essam AlyIf you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.


-
ffmpeg) Where should I put the 'loop code' in concat ?
7 mars 2020, par vamanI’m new here.
I have 3 video files.(intro.mp4, main.mp4, outro.mp4)
I’m trying to make main.mp4 loop 3 times between intro.mp4 and outro.mp4.
Here’s the code. All I know about loop code is -stream_loop 3 -i main.mp4 -c copy\ Where should I put that code ? or How can I do ?ffmpeg -i intro2.mp4 -i MainLoop.mp4 -i Outro.mp4 -filter_complex "[0:v]fade=type=out:duration=10:start_time=20,setpts=PTS-STARTPTS[v0]; [1:v]fade=type=in:duration=3,fade=type=out:duration=5:start_time=8,setpts=PTS-STARTPTS[v1]; [2:v]fade=type=in:duration=2,setpts=PTS-STARTPTS[v2]; [v0][0:a][v1][1:a][v2][2:a]concat=n=3:v=1:a=1[v][a]" -map "[v]" -map "[a]" output.mp4