Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (10739)

  • lavu/tx : invert permutation lookups

    27 février 2021, par Lynne
    lavu/tx : invert permutation lookups
    

    out[lut[i]] = in[i] lookups were 4.04 times(!) slower than
    out[i] = in[lut[i]] lookups for an out-of-place FFT of length 4096.

    The permutes remain unchanged for anything but out-of-place monolithic
    FFT, as those benefit quite a lot from the current order (it means
    there's only 1 lookup necessary to add to an offset, rather than
    a full gather).

    The code was based around non-power-of-two FFTs, so this wasn't
    benchmarked early on.

    • [DH] libavutil/tx.c
    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c
  • Anomalie #2065 : Liste de travaux - page vide

    4 mai 2011, par Teddy Payet

    Le titre de la page (ainsi que dans le menu) est "Liste de travaux". Ça ne serait pas mieux "Liste des travaux" ("des" à la place "de").

  • Add VUI parameters to h.264 post encode

    20 septembre 2016, par Dustin Kerstein

    Apparently ffmpeg/libx264 doesn’t add these VUI parameters and this is causing issues with my decoder. Avidemux 2.5 does (2.6 does not) but I would very much like to avoid preparing/re-encoding the hundreds of files.

    The VUI parameters I am looking to add are :

    • max_num_reorder_frames=0
    • bitstream_restriction_flag=1

    Is anyone aware of any tools that could accomplish this without re-encoding ? If this is something that would need to be custom written, where would be a good place to find the right person ?

    Thanks,
    Dustin