
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (85)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (8979)
-
Can I save a matplotlib animation to webm format ?
19 septembre 2017, par Nikhil MahajanI am using this example code as a test case : https://matplotlib.org/examples/animation/moviewriter.html
In this code, they use FFMPEG to write the matplotlib animation to an .mp4 video file. Is it possible to write to a .webm format ?
But I am not sure how to go about doing this.
-
arm : Use .data.rel.ro for const data with relocations
16 novembre 2014, par Martin Storsjö -
try to generate a frame from a video using FFmpeg command and try to save all frame in a upload directory
15 juillet 2022, par Rahul singhimport ffmpeg

import os

for video in os.listdir(video_path):

 if video.endswith(".mp4"):

 if not os.path.exists('upload'):

 os.makedirs('upload')
 os.chdir('upload')
 print(os.getcwd())
 command = f'ffmpeg -i {video} frame_%0d.jpg'
 os.system(command)



i am trying to generate frame using ffmpeg command and save frame in upload directory but not able to do it. can anyone help me with this. It will be great help. Thanks in advance.