Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (12879)

  • Revision 6ad18db24f : Palette experiment : encode color indices based on context The basic idea is to

    19 mars 2015, par hui su

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


     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_entropymode.h


     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_palette.c


     Modify /vp9/common/vp9_palette.h


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/encoder/vp9_rd.c


     Modify /vp9/encoder/vp9_rdopt.c



    Palette experiment : encode color indices based on context

    The basic idea is to use a pixel’s neighboring colors as
    context to predict its own color. Up to 4 neighbors are
    considered here : left, left-above, above, right-above.
    To reduce the number of contexts, the combination of any
    4 (or less) colors are mapped to a reduced number of
    patterns. For example, 1111, 2222, 3333, … , can be mapped
    to the same pattern : AAAA. SImilarly, 1122, 1133, 2233, …,
    can be mapped to the pattern AABB. In this way, the total
    number of color contexts is reduced to 16.

    This almost doubles the gain of palette coding on screen
    content videos.

    on screen_content
    — enable-palette +14.2%
    — enable-palette —enable-tx-skip +21.2%

    on derflr
    — enable-palette +0.12%
    with all other experiments +6.16%

    Change-Id : I560306dae216f2ac11a9214968c2ad2319fa1718

  • fate : Add basic tests for WebM Dash Manifest

    26 août 2014, par Vignesh Venkatasubramanian
    fate : Add basic tests for WebM Dash Manifest
    

    Add fate tests that test out the functionality of WebM DASH
    Manifest XML generation. This patch contains the vpx.mak file
    changes and the reference gold XML files.

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

    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-audio-streams
    • [DH] tests/ref/fate/webm-dash-manifest-unaligned-video-streams
  • Save base64 bit encoded tring to the file in php

    10 mai 2016, par ppeiris

    I have a php application which takes base64 encoded wav file from the client (browser) via ajax and save to the database. No I have to re encode the wav file using ffmpeg before I save the file in to the database (I can do this using system calls). But the questions is I need the input file (name.wav) for ffmpeg to do the work and as of right now I have only base64 encoded string in my php variable. I need to save this file to the disk using these base64 encoded string. How can I do this in php.

    my server is running on RedHat and apache.

    Thanks for your help in advance

    Prabath