
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (47)
-
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 (8683)
-
ffmpeg create a tile with a extremly high resolution [closed]
7 octobre 2020, par FrederikI want a tile in a hidh resolution, but I get an error that the picture size is invalid.

ffmpeg -i video.mp4 -frames: 1 -vf "select=not(mod(n\,100)),scale=1920x1080,tile=5x50" out.jpeg.
Picture size 9600x54000 is invalid
. But this is lower than the max jpeg size which is 65,535×65,535. How can i fix it or how do i tell ffmpeg to split it up in multiple pictures.

-
Merge commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c'
11 novembre 2017, par James AlmerMerge commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c'
* commit '3cae7f8b9baaf43789490b676d8f5825f2e1bc2c' :
cbs : Add some read/write tests
http: Reset compressed header flag when starting to read a request
cbs_h264 : Fix writing streams with auxiliary pictures
smacker : fix integer overflow with pts_inc
smacker : return meaningful error codes on failure
pixdesc : Add API to map color property names to enum valuesThis commit is a noop, see
6f15f1cdc85350b7adcfb7c50eedb5ecde6a384a
547b8aeed442dbb3b2cf4a2c507c63e869795cfd
7ed47e97297fd5ef473d0cc93f0455adbadaac83
624d4739dbfc950ee756e83ae187f97dc82d10c9
6743351558001764d662bb52b9a3e0bbb63366d6
809b0402dc916b876dfdd6bb9c88f171cf3e77c0Merged-by : James Almer <jamrial@gmail.com>
-
Have python translate the correct file name
24 avril 2018, par DutchNinjaI’m trying to make a small simple program that can make a video out of a bunch of pictures.
I found this :
os.system("ffmpeg -r 1 -i img%01d.png -vcodec mpeg4 -y movie.mp4")
It works but only if the file names are imgxxx.png
my files are named : xx.xx.xx.xxx.jpg (example : 11.58.30.445.jpg). As you might understand the file names are made from the time the picture is taken.
I have tried several options but I can’t make python read the correct files. I could rename all the files but I want the program to run by itself so renaming all the files is not the solution I’m looking for.
Thanks in advance for all the help.