
Recherche avancée
Autres articles (66)
-
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. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11870)
-
ffmpeg convert mpeg4 to h264 with api play black in quicktime [on hold]
9 février 2018, par C.yixianI try to convert mpeg4 to h264 with ffmpeg api on macox 10.12.It play black in quickTime while it play well in VLC(the media information of my output file : codec : H264-MPEG-4 AVC Decoded format : Planar 4:2:0 YUV). But when I convert with ffmpeg cmd line "ffmpeg -i test.mp4 -vcodec copy -an test2.mp4", It can play well in quickTime.
-
Should I use FFmpeg or opencv to convert a video into a black and white by a C program ? [closed]
9 février 2021, par MeganathanI want to convert a colored video clip into a black and white clip by a c program, Which one is best suitable for that purpose, FFMPEG or OPENCV ? I am new to video processing.


-
How to crop bottom of video followed by removing black borders ?
9 mai 2018, par pmdalyI have video where there is a static bar on the bottom 50 pixels and also a black boarder around the actual content. I want to remove the bottom 50 pixels then use cropdetect to auto trim the border.
I have the following to remove the border
dims = $(ffmpeg -i "$video$ -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/{print $NF}' | tail -n1)
ffmpeg -i "$video" -vf "$dims" "$video_out"I’m not sure how to add the step to remove the bottom 50 pixels prior to this.