Recherche avancée

Médias (91)

Autres articles (87)

  • 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.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • 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 (...)

Sur d’autres sites (8068)

  • vp8 : fix bilinear C code to work if src_stride != dst_stride.

    5 février 2014, par Ronald S. Bultje
    vp8 : fix bilinear C code to work if src_stride != dst_stride.
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Janne Grunau <janne-libav@jannau.net>

    • [DBH] libavcodec/vp8dsp.c
  • configure : Add additional glslang libraries to make linking work

    18 août 2020, par Philip Langdale
    configure : Add additional glslang libraries to make linking work
    

    The latest builds of glslang introduce new libraries that need to be
    linked for all symbols to be fully resolved.

    This change will break building against older installations of glslang
    and it's very hard to tell them apart as the library change upstream
    was not accompanied by any version bump and no official release has
    been made with this change it - just lots of people packaging up git
    snapshots. So, apologies in advance.

    • [DH] configure
  • getting ffmpegthumbnailer to work on heroku

    28 novembre 2013, par scientiffic

    Has anyone gotten ffmpegthumbnailer to work on heroku ? The only documentation I can find online is here :

    Using Heroku Vulcan to build lib with dependency

    And it seems like it was never answered.

    As I try to install ffmpegthumbnailer, I get the error :

    checking for FFMPEG... no
    configure: error: Package requirements (libavutil libavformat libavcodec >= 52.26.0 libswscale) were not met:

    No package &#39;libavutil&#39; found
    No package &#39;libavformat&#39; found
    No package &#39;libavcodec&#39; found
    No package &#39;libswscale&#39; found

    Consider adjusting the PKG_CONFIG_PATH environment variable if you
    installed software in a non-standard prefix.

    Alternatively, you may set the environment variables FFMPEG_CFLAGS
    and FFMPEG_LIBS to avoid the need to call pkg-config.

    I do have ffmpeg installed, though, which I can check with heroku which ffmpeg, which returns vendor/ffmpeg/bin/ffmpeg

    I tried adding environment variables FFMPEG_CFLAGS and FFMPEG_LIBS :

    FFMPEG_CFLAGS:   bin:vendor/ffmpeg/include:vendor/libav/include
    FFMPEG_LIBS:     vendor/ffmpeg/lib:vendor/libav/lib
    LD_LIBRARY_PATH: vendor/ffmpeg/lib:/usr/local/lib
    PATH:            bin:vendor/ffmpeg/bin:vendor/bundle/ruby/1.9.1/bin:/usr/local/bin:/usr/bin:/bin

    How do I get my Heroku app to recognize my installation of ffmpeg when I install ffmpegthumbnailer ?