
Recherche avancée
Autres articles (48)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 -
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 (7396)
-
How to build android with ffmpeg ?
28 janvier 2021, par PascalI have compiled ffmpeg and want now to build my android project. I already searched to web and followed the example it the RhythmGame sample but i get this error :


> Build command failed.
 Error while executing process F:\Windows\Sdk\cmake\3.10.2.4988404\bin\ninja.exe with arguments {-C **\app\.cxx\cmake\debug\armeabi-v7a native-lib}
 ninja: Entering directory `**\app\.cxx\cmake\debug\armeabi-v7a'
 
 ninja: error: 'swresample-NOTFOUND', needed by '../../../../build/intermediates/cmake/debug/obj/armeabi-v7a/libnative-lib.so', missing and no known rule to make it




-
Build ffmpeg using yocto
6 février 2023, par jsajiI am trying to build ffmpeg for an ARM SoC. Therefore I am using yocto with following recipe :



SUMMARY = "FFMPEG"
HOMEPAGE = "http://ffmpeg.org"

LICENSE = "GPLv2"
#LIC_FILES_CHKSUM = "file://COPYING.GPLv2"

#SECTION = "net"
#DEPENDS = "sqlite3-native glib-2.0 zlib libpcre spawn-fcgi fcgi"

S = "${WORKDIR}/git"

SRCREV = "${AUTOREV}"

SRC_URI = "git://source.ffmpeg.org/ffmpeg.git;branch=release/2.8 \
 "


PACKAGECONFIG[--build] = ""

EXTRA_OECONF = " \
 --extra-ldflags=-static \
 --extra-cflags=-static \
 --disable-mipsfpu \
 --disable-mips32r2 \
 --disable-mipsdspr1 \
 --disable-mipsdspr2 \
 --enable-bzlib \
 --enable-zlib \
"

inherit autotools pkgconfig




Building this recipe throws following errer :



Unknown option "--build=x86_64-linux`




How can I remove this configuration flag from do_configure ?
Or is there any other way to build
ffmpeg
?

-
Build ffmpeg using yocto
17 août 2016, par GriffinI am trying to build ffmpeg for an ARM SoC. Therefore I am using yocto with following recipe :
SUMMARY = "FFMPEG"
HOMEPAGE = "http://ffmpeg.org"
LICENSE = "GPLv2"
#LIC_FILES_CHKSUM = "file://COPYING.GPLv2"
#SECTION = "net"
#DEPENDS = "sqlite3-native glib-2.0 zlib libpcre spawn-fcgi fcgi"
S = "${WORKDIR}/git"
SRCREV = "${AUTOREV}"
SRC_URI = "git://source.ffmpeg.org/ffmpeg.git;branch=release/2.8 \
"
PACKAGECONFIG[--build] = ""
EXTRA_OECONF = " \
--extra-ldflags=-static \
--extra-cflags=-static \
--disable-mipsfpu \
--disable-mips32r2 \
--disable-mipsdspr1 \
--disable-mipsdspr2 \
--enable-bzlib \
--enable-zlib \
"
inherit autotools pkgconfigBuilding this recipe throws following errer :
Unknown option "--build=x86_64-linux`
How can I remove this configuration flag from do_configure ?
Or is there any other way to buildffmpeg
?