Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (91)

  • Organiser par catégorie

    17 mai 2013, par

    Dans 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, par

    Informations 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, par

    L’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 Irith

    I'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 ?

    


    enter image description here

    


  • How to build ffmpeg for arm ? [on hold]

    11 décembre 2014, par fatsissy

    I 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 Janos

    I am including opencv with custom build parameters in my Yocto image. For that I have an opencv_4.1.0.bbappend recipe, in which I set custom options, specifically FFMPEG. 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 for do_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&#xA;    1 | #include janos/dev/yocto/build/tmp/work/core2-64-poky-linux/opencv/4.1.0-r0/recipe-sysroot/usr/include/libpng/png.h>&#xA;&#xA;CheckIncludeFile.c:1:10: fatal error: sys/videoio.h: No such file or directory&#xA;    1 | #include <sys></sys>videoio.h>&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;&#xA;

    ...&#xA;libpng-dev:&#xA;    /usr/bin/libpng-config&#xA;    /usr/bin/libpng16-config&#xA;    /usr/include/libpng16/png.h&#xA;    /usr/include/libpng16/pngconf.h&#xA;    /usr/include/libpng16/pnglibconf.h&#xA;    /usr/include/png.h&#xA;    ...&#xA;...&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

    How can I get my recipe to know those headers ?

    &#xA;&#xA;

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

    &#xA;