Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (109)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

  • Revision d96228a07c : Replace best_mode_index table retrieve with fetching best_mbmode This commit al

    9 septembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Replace best_mode_index table retrieve with fetching best_mbmode

    This commit allows the encoder to find current best prediction mode
    state using best_mbmode, instead of fetching from the static mode
    search table via best_mode_index.

    Change-Id : Ibefeab83aed33a49c2be03e83f09153856ca4271

  • FFMPeg quick P-Frame decoding

    22 août 2014, par Lior Ohana

    We’re using FFmpeg to decode H.264 live video streams.
    When we get to a point where we’re not able to keep up with the live frame-rate (i.e high CPU) we start to drop frames before they pass the decoder.
    Obviously, once we drop a frame, I need to drop all next P-Frames until the next I-Frame (GOP).

    The result is that sometimes we have several seconds without video (until an I-Frame arrives).

    Is there anyway in FFmpeg to have a "partial" P-Frame decoding that will reduce the decoding time on one hand (assuming I don’t need the uncompressed frame) while keeping the decoder in a "valid" state for being able to decode the P-Frames afterwards ?

    Thanks,
    Lior.

  • random_seed : Rewrite the generic clock() based seed code

    11 juin 2012, par Michael Niedermayer
    random_seed : Rewrite the generic clock() based seed code
    

    The new code is faster and reuses the previous state in case of
    multiple calls.

    The previous code could easily end up in near-infinite loops,
    if the difference between two clock() calls never was larger than
    1.

    This makes fate-parseutils finish in finite time when run in wine,
    if CryptGenRandom isn’t available (which e.g. isn’t available if
    targeting Windows RT/metro).

    Patch originally by Michael Niedermayer but with some modifications
    by Martin Storsjö.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/random_seed.c