Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (4)

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

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3096)

  • webpdec : Fix decoding of the huffman group indices.

    3 juillet 2014, par Justin Ruggles
    webpdec : Fix decoding of the huffman group indices.
    

    Per the specification, "The red and green components of a pixel
    define the meta Huffman code used in a particular block of the ARGB
    image."

    • [DBH] libavcodec/webp.c
  • FFmpeg : Can't read self-rendered videofile with QTRLE

    10 décembre 2014, par user4240580

    I adjusted the decoding_encoding.c example to use the ARGB pixel format, the QTRLE codec and a live stream.
    I can successfully write my video stream to a file but can’t access the stream again properly.
    I tried something like this :

    if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
       exit(1);
    }

    /* retrieve stream information */
    if (avformat_find_stream_info(fmt_ctx, NULL) < 0) {
       exit(1);
    }

    av_dump_format(fmt_ctx, 0, src_filename, 0);

    similiar to what’s written in the demuxing_decoding.c- and the filtering_video.c-example.

    This results in the program trying to use the AAC-code which obviously fails :

    Initializing ...[aac @ 001d4d60] Format aac detected only with low score of 1, misdetection possible!
    [aac @ 001d59a0] channel element 0.0 is not allocated
    [aac @ 001d59a0] Reserved bit set.
    ...

    Similiarly, I can’t get FFplay to correctly detect the codec ; and when using

    ffplay -formats

    it doesn’t even list qtrle there.

    Do I have to use a mux to properly use qtrle ? I’m confused because the decoding_encoding.c-example doesn’t seem to use any mux but simply sets the codec and everything works ... ?

  • swscale/rgb2rgb_template : use shuffle macro on big-endian arches

    30 novembre 2020, par Andriy Gelman
    swscale/rgb2rgb_template : use shuffle macro on big-endian arches
    

    Fixes fate-qtrle-32bit on big-endian.

    The macro does a simple byte swap on uint8 array without any casts, so
    it's valid on big-endian arches.

    The mentioned test was failing because the byteswap function
    shuffle_bytes_3210_c() is used in the pixel format conversion
    (argb->bgra).

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libswscale/rgb2rgb_template.c