
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (63)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9885)
-
ffmpeg and windows command line
6 janvier 2013, par Kasper DKI am trying to use ffmpeg for windows to convert thousands of images and sounds to a single video file.
ffmpeg -i apples.jpg -i oranges.jpg -i orangessound.wav -i bananas.jpg -vcodec mpeg4 test.avi
My delphi program generates the command line as a string, and I use shellexecute to call it.
But is it true that a command line cannot be longer than 8191 characters ? If so, can ffmpeg read the parameters from a file instead ?
It is not possible in this case to rename the pictures with consecutive numbers
-
Why does this code detects images as video and how can I fix it ?
18 novembre 2022, par ArturoThis method is detecting
.jpg
pictures as video. Why is that ? How can I fix it ?

def is_video(self) -> bool:
 try:
 res = self.video_metadata['codec_type'] == 'video'
 logger.info(f"Video.is_video() -> {res}")
 return res
 except:
 return False



I'm getting the metadata with


ffmpeg.probe(self.path, select_streams = stream)['streams'][0]



I'm using the metadata for more things, that's why I've used ffmpeg in this method.


-
Combining two ffmpeg commands into one command [closed]
19 janvier 2024, par Tuan LeI want to combine two ffmpeg commands to single ffmpeg command (1. combine multiple photos into a video ; 2. add music to the newly created video)


1

ffmpeg -r 0.1 -s 1080x1620 -i pictures/%03d.jpeg -vcodec libx264 -crf 25 video1.mp4


2

ffmpeg -i video1.mp4 -stream_loop -1 -i audio2.mp3 -map 0:v -map 1:a -c copy -shortest output.mp4


(Actually I have very little knowledge of ffmpeg so please excuse my foolishness)
Please help me with my issue