Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (74)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11792)

  • lavc/aacpsdsp : precompute constant factors

    20 septembre 2022, par Rémi Denis-Courmont
    lavc/aacpsdsp : precompute constant factors
    

    The input complex factors are constant for each iterations. This
    substitudes 4 loads, 2 additions and 2 subtractions per iteration of
    the inner-loop with another 4 loads. Thus effectively 4 arithmetic
    operations per iteration of the inner loop are avoided, i.e. 24
    operations per iteration of the outer loop, or 24 * (n - 1) operations
    in total.

    If the inner loop is not unrolled by the compiler, this also might
    also save some pointer arithmetic as most instruction sets do not
    have addressing modes with negated register offsets (12 - j). Unless
    the compiler is optimising for code size, this is unlikely though.

    • [DH] libavcodec/aacpsdsp_template.c
  • Revision 994c79cccf : Handling frame references and scale factors in one for loop. Using ALLOWED_REFS

    25 avril 2013, par Dmitry Kovalev

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


     Modify /vp9/decoder/vp9_decodframe.c



    Handling frame references and scale factors in one for loop.

    Using ALLOWED_REFS_PER_FRAME constants instead of hard coded 3, replacing
    memcpy with plain struct assignment.

    Change-Id : Ibc86f5d175fcb3f3a3eddacf593525370f1f854c

  • Getting frames from Video Windows Phone. FFmpeg Wrapper

    22 février 2016, par Danial Kashin

    I`m actually writing Application to make and edit GIFs from Video on Windows Phone 8.1. I`d like to get an array of Bitmaps from MediaClip(can be saved as videofile). I could use AForge, but it`s just for x86 only. I also tried using Lumia.Imaging, but not sure it can do what I want.
    I know FFMpeg is doing somethong like that, but I dont need to just save frames, but to use them as Bitmap array to then use every Bitmap as ByteArray.

    Here I read that there is absolutely no way to do what I want without writing my own code. Is it true ?
    Accessing & Manipulating video frames from .mp4 file in Windows Phone 7 app

    Thank you for any help. Ask for more detailed info.