Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (57)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (6855)

  • avutil/random_seed : Add the runtime in cycles of the main loop to the entropy pool

    9 décembre 2015, par Michael Niedermayer
    avutil/random_seed : Add the runtime in cycles of the main loop to the entropy pool
    

    This should theoretically improve the randomness slightly

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/random_seed.c
  • Undefined FFMPEG references in my shared library when linking main program

    23 février 2016, par Danny

    I’ve built a shared library which references the FFMPEG libraries. I’ve having a tough time to link the final application. I’ve fiddled for hours with library order but no joy.

    g++ -o testVideoTranscode testVideoTranscode.o /usr/lib/libstdc++.so.6 -L../../../lib3p -lavutil  -lswresample -lavcodec -L../../../lib -ldvsutils -ldvscfg -ldvstc -lstdc++ -lmch264dec -lfreeimage -lpthread

    ../../../lib/libdvstc.so: undefined reference to `sws_getContext(int, int, AVPixelFormat, int, int, AVPixelFormat, int, SwsFilter*, SwsFilter*, double const*)'
    ../../../lib/libdvstc.so: undefined reference to `av_frame_alloc()'
    ../../../lib/libdvstc.so: undefined reference to `avcodec_close(AVCodecContext*)'
    etc etc

    For example, one missing symbol, av_frame_alloc(), is correctly in the ibavutil.so library (albeit in a non-standard location) :

    nm -D ../../../lib3p/libavutil.so | grep av_frame_alloc
    00021360 T av_frame_alloc

    My library, libdvstc.so, correctly shows the reference to the symbol and the file :

    nm -D --demangle ../../../lib/libdvstc.so | grep av_frame_alloc
            U av_frame_alloc()

    ldd ../../../lib/libdvstc.so
       linux-gate.so.1 =>  (0xb77c3000)
       libavutil.so.55 => /mnt/swdevel/DVStor/source_build/lib3p/libavutil.so.55 (0xb772f000)
       libswresample.so.2 => /mnt/swdevel/DVStor/source_build/lib3p/libswresample.so.2 (0xb7714000)
       libavcodec.so.57 => /mnt/swdevel/DVStor/source_build/lib3p/libavcodec.so.57 (0xb623f000)
       libstdc++.so.5 => /usr/local/dvstor/lib/libstdc++.so.5 (0xb616f000)
       libm.so.6 => /lib/libm.so.6 (0xb6144000)
       libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb6126000)
       libc.so.6 => /lib/libc.so.6 (0xb5f8f000)
       libpthread.so.0 => /lib/libpthread.so.0 (0xb5f74000)
       librt.so.1 => /lib/librt.so.1 (0xb5f6b000)
       libdl.so.2 => /lib/libdl.so.2 (0xb5f65000)
       libz.so.1 => /lib/libz.so.1 (0xb5f51000)
       /lib/ld-linux.so.2 (0x00871000)

    Its all there. I’m stuck...

  • jpeg2000 : Split codeblock decoding from the main tile decoding

    11 septembre 2015, par Luca Barbato
    jpeg2000 : Split codeblock decoding from the main tile decoding
    

    That loop is completely stand-alone.

    • [DBH] libavcodec/jpeg2000dec.c