
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (74)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
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 ;
Sur d’autres sites (12873)
-
write_gif is automatically changing the resolution of the resultant gif as compared to the supplied video(mp4) file ? How to avoid that ?
14 septembre 2022, par Mohammed HussainPlease see the code below and the result. How can we get the gif in the original dimensions. The moviepy documentation doesn't seem to say much.


from moviepy.editor import * import os os.chdir(r'G:\') clip = VideoFileClip("VID.mp4").subclip(6*60, 6.1*60) clip.write_gif("vidgif.gif",program = 'ffmpeg')




-
ffmpeg how to get current frame size ? [duplicate]
6 octobre 2020, par MorrisGiven an input video (video-A), I want to generate a black video clip with titles and concat it with video-A. Ideally I this blank clip would have the same frame-size of video-A. I need to know video-A's current frame-size (e.g. 1080x920, 480x360). How do I get it using ffmpeg command and / or node.js fluent-ffmpeg ?


-
FFMPEG script to cut audio at exact time intervals [duplicate]
15 janvier 2021, par BitBitI have an audio file which is about 1 hour 10 minutes long, and I want to cut the audio into several parts which are exactly time 15 mins apart. Can someone please help me with a ffmpeg script that cuts audio at every 15th minute(i.e. at 15:00,30:00,45:00,60:00) and hence make my 1 hour 10 minutes audio clip into 5 cut clips of 15 minutes length(the last clip being only 10 minutes due to the video length)