
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (25)
-
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 (4649)
-
Is it possible to build ffmpeg x64 on Windows ?
15 juin 2017, par mooseThe real answer is probably "no", but still, just to double check.
Has anyone ever been able to build ffmpeg x64 on Windows (VS2013 or VS2015) ? I know it is not possible with publicly available sources without heavy modifications. However, if somebody did it and if he is willing to share a few tips...Edit :
It is interesting how most of the required x64 tools for running the "configure" are distributed without dependencies and it is impossible to get them anywhere. Looks like a professional trolling.Edit2 :
There are thousands of errors like this :fatal error C1083: Cannot open include file: 'features.h': No such file or directory
features.h is missing as many other header files. Is there a fix for that, or switching to Linux is the only option ?
-
Is it possible to build ffmpeg x64 on Windows ?
19 avril 2017, par mooseThe real answer is probably "no", but still, just to double check.
Has anyone ever been able to build ffmpeg x64 on Windows (VS2013 or VS2015) ? I know it is not possible with publicly available sources without heavy modifications. However, if somebody did it and if he is willing to share a few tips...Edit :
It is interesting how most of the required x64 tools for running the "configure" are distributed without dependencies and it is impossible to get them anywhere. Looks like a professional trolling.Edit2 :
There are thousands of errors like this :fatal error C1083: Cannot open include file: 'features.h': No such file or directory
features.h is missing as many other header files. Is there a fix for that, or switching to Linux is the only option ?
-
fmmpeg with windows file with random names
15 juin 2022, par slimguatI have in Windows system some jpg files with this file name style :


fixedname_xxxnumber_randomtext.jpg



I want to use ffmpeg library to generate animation based on these images, but I don't know how to put it with that random part at the end, the only thing I can do is to remove manually all that random text and create a script like in this example.


ffmpeg -start_number 100 -framerate 10 -i fixedname_%%03d.jpg



is there any way to add a symbol like * to just take whatever comes after the order ?