Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (63)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (10241)

  • FFMPEG : Proccess multiple images

    5 février 2016, par Jorge Anzola

    I want to reduce the weight of a bunch of images at the time. with -q:v x where x is a number between 1 and 30 (bigger the number, worse the quality), I’m able to save a lot of space even with x=1. Now, when it comes to process multiple file, I’m stuck.

    I’ve tried these two batch files :

    mkdir processed
    for f in *.jpg;
       do name=`echo $i | cut -d'.' -f1`;
       echo $name;
       ffmpeg -i $i -q:v 1 processed/$name.jpg;
    done

    And

    mkdir processed
    for f in *.jpg;
       do ffmpeg -i "$f" -q:v 1 processed/"${f%.jpg}.jpg";
    done

    Both just create the processed folder but nothing else.

  • Prendre en compte smush (scripts init)

    28 avril 2013

    Il faudrait installer les binaires nécessaires au plugin smush :

    • ImageMagick ;
    • optipng ;
    • pngnq ;
    • gifscycle ;
    • libjpeg-progs ;

    Il faut aussi ajouter le checkout du plugin.

    1. svn co svn ://zone.spip.org/spip-zone/_plugins_/smush_images/trunk plugins/smush
  • FFMPEG x264 encoding on Android - error with lookahead

    6 janvier 2013, par Tishu

    I am using FFMPEG + x264 on Android to encode YUV420 frames to a video file. I use the following code on each frame to encode them :

    avcodec_encode_video2(gVideoWriteCodecCtx, &packet, pCurrentFrame, &gotPacket);

    On the first few calls, the frame buffer gets filled and nothing is encoded. When the first encoding happens, a call is made to x264_lookahead_get_frames. I can see there that my frame array is correctly populated, but the first item is NULL. As a consequence, in x264_weights_analyse the reference frame gotten as frames[p0] is NULL and I get an exception there.

    slicetype.c, the first frame in "frames" is NULL

    if( h->param.analyse.i_weighted_pred && b == p1 )
       {
           x264_emms();
           x264_weights_analyse( h, fenc, frames[p0], 1 );
           w = fenc->weight[0];
       }

    And the exception happens there, ref is NULL

    static void x264_weights_analyse( x264_t *h, x264_frame_t *fenc, x264_frame_t *ref, int b_lookahead )
       {
           int i_delta_index = fenc->i_frame - ref->i_frame - 1;

    I surely am missing something as I am sure this encoder works for most people :) Does anyone have an idea why this first frame in the "frames" array is null ?

    Many thanks