
Recherche avancée
Médias (3)
-
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
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (91)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (2624)
-
ffmpeg Unrecognized option '—enable-libopus'
9 juillet 2021, par IrithI'm running ffmpeg from a windows 10 machine.


My goal is to trim silence from the beginning to the end of a track (this works just fine) and compress using opus.


I am new in the "audio elaboration" world so maybe I'm not understanding this properly...but the main issue here is that ffmpeg doesn't recognize —enable-libopus although it's clearly in the options (see attachment).


Can anyone help please ?




-
How to build ffmpeg for arm ? [on hold]
11 décembre 2014, par fatsissyI have an arm cross compiler on my ubuntu machine and tried to build ffmeg libraries for arm but got the following error
cd ffmpeg-2.5
./configure --host=arm-linux-gnueabihf
Unknown option "--host=arm-linux-gnueabihf"I did read the ./configure —help file and there is an option "—arch=ARCH" but im not sure how to set this or if its the correct option.
thanks ! -
Yocto depending on header - how to DEPEND it ?
15 juin 2020, par JanosI am including
opencv
with custom build parameters in my Yocto image. For that I have anopencv_4.1.0.bbappend
recipe, in which I set custom options, specificallyFFMPEG
. The recipe goes something like this :


DEPENDS += "ffmpeg 
EXTRA_OECMAKE_append += "-DWITH_FFMPEG=ON -DWITH_GTK=OFF" # and some other options




During
configure
I get cmake errors and can't seem to figure out, how to satisfy the header dependencies. The errors go like this (I assume this is the reason fordo_configure
to fail) :


CheckIncludeFile.c:1:10: fatal error: /home/janos/dev/yocto/build/tmp/work/core2-64-poky-linux/opencv/4.1.0-r0/recipe-sysroot/usr/include/libpng/png.h: No such file or directory
 1 | #include janos/dev/yocto/build/tmp/work/core2-64-poky-linux/opencv/4.1.0-r0/recipe-sysroot/usr/include/libpng/png.h>

CheckIncludeFile.c:1:10: fatal error: sys/videoio.h: No such file or directory
 1 | #include <sys></sys>videoio.h>




Focusing on the missing
png.h
header first, I am tempted to dependlibpng-dev
, as I also wouldapt install
it. But there is no package for it.


When I search
oe-pkgdata-util list-pkg-files -p libpng
, I can find the header in alibpng-dev
package :


...
libpng-dev:
 /usr/bin/libpng-config
 /usr/bin/libpng16-config
 /usr/include/libpng16/png.h
 /usr/include/libpng16/pngconf.h
 /usr/include/libpng16/pnglibconf.h
 /usr/include/png.h
 ...
...




I can also find it in
libpng-src
and alsoffmpeg-src
package (oe-pkgdata-util find-path "*png.h"
was my friend). But all of these -dev and -src packages I cannot depend on inDEPENDS
.


How can I get my recipe to know those headers ?



Target machine is
raspberrypi4-64
, on which the recipe is configuring and compiling well - it fails when I build forqemux86-64
, which I use for testing. Namely, my test command isMACHINE="qemux86-64" bitbake opencv
.