
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (24)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 ) (...)
Sur d’autres sites (5406)
-
Fix modplug linkage on Windows.
11 mars 2014, par Matt Oliver -
facing challenges while Installing FFMPEG on windows
6 août 2018, par Gaurav kakkarI’m trying to install "FFmpeg-php for Windows -x64 PHP 7.0 using wamp server", but not able to install that. It’s a request to you please share steps with me regarding this issue.
I have followed this link to install http://www.jaypan.com/tutorial/installing-ffmpeg-wamp
-
How do you setup golang on windows with the header files for goav
18 avril 2018, par nevernewI’m trying to compile goav on Windows and I’ve got quite far
I’ve compiled the ffmpeg libraries in MSYS2 and linked the packages with :set PKG_CONFIG_PATH=%~dp0FFmpeg\libavformat;%~dp0FFmpeg\libavcodec;%~dp0FFmpeg\libavutil;%~dp0FFmpeg\libswresample;
which has worked !
However, here’s the problem now :
# github.com/giorgisio/goav/avcodec
source\src\github.com\giorgisio\goav\avcodec\avcodec.go:14:34: fatal error: libavformat/avformat.h: No such file or directory
//#include <libavformat></libavformat>avformat.h>When compiling, Golang can’t find the avformat.h (and I assume the other ffmpeg header files, but compilation terminated).
How do I tell go where these files are ? I’ve checked and they are in the folders described in the PKG_CONFIG_PATH, but I guess it’s not looking for them there.
Side note : I see that on linux-debian based systems I just have to do a
apt-get install libavformat-dev
but I want to compile on windows.