Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (68)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (7933)

  • vp9 : fix explicit memory order for report_progress.

    12 septembre 2017, par Ronald S. Bultje
    vp9 : fix explicit memory order for report_progress.
    
    • [DH] libavcodec/vp9.c
  • Improve LPC order guess

    3 décembre 2014, par Martijn van Beurden
    Improve LPC order guess
    

    The recent compression preset retuning improved upon most material
    but it the few tracks that show regression are usually classical
    music. This patch improves compression by improving the LPC order
    guess, of which classical music benefits most.

    Improvement is 0.007% on average but up to 0.1%. I haven’t seen
    regressions for any of my test samples.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/libFLAC/lpc.c
  • Revision 8f9d94ec17 : SSSE3 Optimization for Atom processors using new instruction selection and order

    5 décembre 2014, par levytamar82

    Changed Paths :
     Modify /vp9/common/x86/vp9_subpixel_8t_ssse3.asm



    SSSE3 Optimization for Atom processors using new instruction selection and
    ordering

    The function vp9_filter_block1d16_h8_ssse3 uses the PSHUFB instruction which has
    a 3 cycle latency and slows execution when done in blocks of 5 or more on Atom
    processors.
    By replacing the PSHUFB instructions with other more efficient single cycle
    instructions (PUNPCKLBW + PUNPCHBW + PALIGNR) performance can be improved.
    In the original code, the PSHUBF uses every byte and is consecutively copied.
    This is done more efficiently by PUNPCKLBW and PUNPCHBW, using PALIGNR to
    concatenate the intermediate result and then shift right the next consecutive 16
    bytes for the final result.

    For example :
    filter = 0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8
    Reg = 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
    REG1 = PUNPCKLBW Reg, Reg = 0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7
    REG2 = PUNPCHBW Reg, Reg = 8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15
    PALIGNR REG2, REG1, 1 = 0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8

    This optimization improved the function performance by 23% and produced a 3%
    user level gain on 1080p content on Atom processors.
    There was no observed performance impact on Core processors (expected).

    Change-Id : I3cec701158993d95ed23ff04516942b5a4a461c0