Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (6)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3589)

  • quickdraw : Switch to greedy parsing

    18 avril 2015, par Vittorio Giovara
    quickdraw : Switch to greedy parsing
    

    Quickdraw packs data as a series of codes that the application is supposed
    to handle, but it does not define any order in which they might appear.
    Since it’s unfeasible to support *all* opcodes defined by the spec,
    only handle well-known blocks containing video data and ignore any unknown
    or unsupported ones.

    Move palette loading and rle decoding to separate functions to resue them
    in other blocks and drop format initialization in init since it can
    support more formats than pal8.

    Validate width and height.

    • [DBH] libavcodec/qdrw.c
  • quickdraw : Switch to greedy parsing

    18 avril 2015, par Vittorio Giovara
    quickdraw : Switch to greedy parsing
    

    Quickdraw packs data as a series of codes that the application is supposed
    to handle, but it does not define any order in which they might appear.
    Since it’s unfeasible to support *all* opcodes defined by the spec,
    only handle well-known blocks containing video data and ignore any unknown
    or unsupported ones.

    Move palette loading and rle decoding to separate functions to resue them
    in other blocks and drop format initialization in init since it can
    support more formats than pal8.

    Validate width and height.

    • [DH] libavcodec/qdrw.c
  • mov : fix DTS calculation for samples with negative stts duration

    27 mai 2015, par Andreas Cadhalpun
    mov : fix DTS calculation for samples with negative stts duration
    

    A negative sample duration is invalid according to the spec, but there
    are samples that use it for the DTS calculation, e.g. :
    http://files.1f0.de/samples/mp4-negative-stts-problem.mp4

    These currently get out of A/V sync.

    Also change the logging type to AV_LOG_WARNING, because decoding the
    sample can continue.

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavformat/mov.c