Recherche avancée

Médias (91)

Autres articles (107)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (18886)

  • Revision 899ab95c8c : Adjustment to allowed range in resize unit test Change-Id : I5222e3db2627a3a9f7f

    11 octobre 2013, par Paul Wilkins

    Changed Paths :
     Modify /test/resize_test.cc



    Adjustment to allowed range in resize unit test

    Change-Id : I5222e3db2627a3a9f7fc34f2ab4554aa5807ed51

  • Revision 91c222491e : Alternate high bitdepth quantizer changes In this proposal, the qindex range is

    3 juillet 2014, par Peter de Rivaz

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/common/vp9_quant_common.c


     Modify /vp9/common/vp9_quant_common.h


     Modify /vp9/common/vp9_seg_common.c


     Modify /vp9/common/vp9_seg_common.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_aq_complexity.c


     Modify /vp9/encoder/vp9_aq_cyclicrefresh.c


     Modify /vp9/encoder/vp9_aq_variance.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_quantize.h


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/vp9_cx_iface.c



    Alternate high bitdepth quantizer changes

    In this proposal, the qindex range is kept at 0 to 255
    but the values are remapped to cover an extended range of
    quantizer values.

    This simplifies the code and bitstream compared to the 8-bit version.

    Change-Id : I0dda61388cef41e21a0d5c34d817c862de637580

  • avutil/tests/channel_layout : Improve enum range check

    30 mars, par Andreas Rheinhardt
    avutil/tests/channel_layout : Improve enum range check
    

    Both GCC and Clang use unsigned as underlying type of
    an enum with no negative enumeration constants, making
    checks like "layout->order >= 0" here tautologically true.
    Clang warns about this. Combine both range checks
    by casting to unsigned to suppress this warning.

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

    • [DH] libavutil/tests/channel_layout.c