
Recherche avancée
Autres articles (34)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6574)
-
Cut end of multiple videos
19 octobre 2020, par Marvin von RappardI need a script to cut off the last 6 seconds of multiple videos. The videos do all have different length.



I can‘t find anything helpful online.



Does anyone know how to do that ?
thx


-
Alternate 2 videos with ffmpeg
2 juin 2012, par enzo.rivelloHere is the problem :
i got 2 videos, and 3 intervals ;
i need to create one video by mixing this 2 videos switching video A to B at interval 1, B to A at interval 2 and again A to B at interval 3.Switching needs to be done along the audio files .
Right now the only solution i came up was to cut the 2 videos and then chain them in the right order, but i was asking if there's a more elegant way to do this !
Thank you everyone in advance !
-
FFMpeg4Android picture to video command doesn't work
31 mai 2014, par Nuriel Aventador TaranI work with FFMpeg4Android to edit and create videos. I run a command but it doesn’t work, the command goes and proceeds but in logcat I can see that the "transcoding failed" and the out1.mp4 doesn’t work.
I took my command from : ffmpeg officel site.My code :
String str2="ffmpeg -loop 1 -i "+Environment.getExternalStorageDirectory() + "/videokit/pic1.jpg -c:v libx264 -t 30 -pix_fmt yuv420p "+Environment.getExternalStorageDirectory() + "/videokit/out1.mp4";
try {
setCommand(str2);
runTranscoing();
} catch (Exception e) {
e.printStackTrace();
Log.d("FFMpeg","couldn't execute command");
}LogCat (doesn’t fit) : `full LogCat
Thanks in advance