Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (66)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7752)

  • Remove obsolete version.h inclusions

    1er août 2021, par Andreas Rheinhardt
    Remove obsolete version.h inclusions
    

    Forgotten in e7bd47e657bbf9e1ce9915e93bc80cb1a29fb7f3.

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vc2enc.c
    • [DH] libavcodec/x86/blockdsp_init.c
    • [DH] libavfilter/internal.h
    • [DH] libavfilter/vf_swapuv.c
    • [DH] libavformat/url.h
    • [DH] libavutil/common.h
    • [DH] libavutil/internal.h
    • [DH] libswscale/swscale_internal.h
  • Merge remote-tracking branch ’cehoyos/master’

    29 juin 2015, par Michael Niedermayer
    Merge remote-tracking branch ’cehoyos/master’
    

    * cehoyos/master :
    lavf/msnwc : Return 0 if the probe function does not detect msnwc-tcp.
    lavf/mpegts : Return 0 if the probe function does not detect mpegts.
    lavf/img2dec : Improve detection of valid Quickdraw images.
    lavf/asfdec : Reduce minimum header size.
    Changelog : Add jpeg 2000 improvements before they get forgotten.
    lavf/img2dec : Autodetect dds frames.

    Conflicts :
    libavformat/version.h

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/asfdec.c
    • [DH] libavformat/img2dec.c
    • [DH] libavformat/mpegts.c
    • [DH] libavformat/msnwc_tcp.c
    • [DH] libavformat/version.h
  • cbs_mpeg2 : Fix parsing of picture and slice headers

    20 juin 2019, par Andreas Rheinhardt
    cbs_mpeg2 : Fix parsing of picture and slice headers
    

    1. The extra information in slice headers was parsed incorrectly :
    In the first reading pass to derive the length of the extra information,
    one should look at bits n, n + 9, n + 18, ... and check whether they
    equal one (further extra information) or zero (end of extra information),
    but instead bits n, n + 8, n + 16, ... were inspected. The second pass
    of reading (where the length is already known and the bytes between the
    length-determining bits are copied into a buffer) did not record what
    was in bits n, n + 9, n + 18, ..., presuming they equal one. And during
    writing, the bytes in the buffer are interleaved with set bits and
    written. This means that if the detected length of the extra information
    was greater than the real length, the output was corrupted. Fortunately
    no sample is known that made use of this mechanism : The extra information
    in slices is still marked as reserved in the specifications. cbs_mpeg2
    is now ready in case this changes.

    2. Furthermore, the buffer is now padded and slightly different, but
    very similar code for reading resp. writing has been replaced by code
    used for both. This was made possible by a new macro, the equivalent
    to cbs_h2645's fixed().

    3. These changes also made it possible to remove the extra_bit_slice
    element from the MPEG2RawSliceHeader structure. Said element was always
    zero except when the detected length of the extra information was less
    than the real length.

    4. The extra information in picture headers (which uses essentially the
    same syntax as the extra information in slice headers) has simply been
    forgotten. This meant that if this extra information was present, it was
    discarded during reading ; and unfortunately writing created invalid
    bitstreams in this case (an extra_bit_picture - the last set bit of the
    whole unit - indicated that there would be a further byte of data,
    although the output didn't contain said data).

    This has been fixed ; both types of extra information are now parsed via
    the same code and essentially passed through.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs_mpeg2.c
    • [DH] libavcodec/cbs_mpeg2.h
    • [DH] libavcodec/cbs_mpeg2_syntax_template.c