
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (19)
-
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 (5745)
-
Building FFMPEG 3.0 on windows
12 avril 2016, par KevinAI’m trying to build FFMpeg 3.0.1 on windows. I’ve successfully build FFMpeg before.
It successfully configures, and when I type Make i get
Make: *** No rule to make target `libavdevice/avdevice.dll', needed by `all-yes`. Stop
I’m building with the following config
./configure --prefix=c:\ffmpeg --toolchain=msvc --enable-w32threads =-=extra=ldflags=/MACHINE:X86 --anble-asm --enable-yasm --enable-shared --disable-static
I’ve tried with both VS2013 and VS2015. Same result.
-
ffmpeg pipe out to stdout on windows
26 mars 2024, par JaSHinHello I need to pipe output from ffmpeg to another program. It's works on my macOs with command :


ffmpeg -i C0333.MP4 -start_number 0 -f rawvideo -pix_fmt rgb48le pipe: | rgb2dng -i - -n 0 -o 'export/test-####.dng'



I have ported rgb2dng from Unix systems to Windows. But same command doesn't work. rgb2dng used stdin to read pipe :


if (strcmp(ifn,"-")==0) {
 ifo = stdin;
 } else {
 ifo = fopen(ifn, "rb");
 }



-
Start using ffmpeg Android with NDK - Windows
26 septembre 2012, par idishI'm new to ffmpeg and I'm trying to compile it/use it's libraries in my Android App with Android NDK. I have everything ready : the NDK, the ffmpeg source, but I've been searching the web for long time trying to compile some ffmpeg into my app.
I found this answer, but I don't really understand the instructions, I repeat, I'm using Windows, not a Linux based operating system. Is it that hard to make ffmpeg work in my android app ? Could anyone please give me instructions to get it work ?Thank you.