Recherche avancée

Médias (91)

Autres articles (62)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6311)

  • Software for intelligent video overlaying and tranformation [on hold]

    29 juin 2017, par raccounts

    I am looking for some software that will enable me to intelligently overlay video.

    Basically, I have 12 or so clips that all capture the same movement (a 360 orbit), but they all have minute differences as the videos were captured over the period of a year.

    Due to their differences, cutting between them is jarring. In order to align them, I have to scale, rotate, and warp the image so that the transition is decent.

    What’s some software that can automate this ?

    Would a 3D tracker be able to accomplish this ? I tried looking into AviSynth and Fusion, an accompanying plugin. Is FFMpeg the ticket ?

    Thank you in advance.

  • Revision 9f26861147 : Support for extended feature flags enumeration leaf in CPUID instruction This C

    20 novembre 2013, par Erik Niemeyer

    Changed Paths :
     Modify /vpx_ports/x86.h


     Modify /vpx_ports/x86_cpuid.c



    Support for extended feature flags enumeration leaf in CPUID instruction

    This CL fixes an overcite with the AVX2 support CL previously
    merged (Change-Id : Idc03f3fca4bf2d0afd33631ea1d3caf8fc34ec29) that
    prevented runtime execution of AVX2 code in WebM.

    Background :
    Starting with the Sandybridge processor, the CPUID instruction was
    enhanced to add various extended feature flag enumeration leaves.
    Reading these leaves requires an additional input value for the CPUID
    instruction which is stored in ECX. This change adds this second input
    value for all ARCH_X86 and ARCH_x86_64 targets to the CPUID macros,
    allowing checks of EBX bit 5 for AVX2 support. This capability will be
    required moving forward to check for future processor features.

    Change-Id : Ie9d872bc9ff68dad4b6578e4544e4dfd0ae26c36

  • Python threading module on windows after session logout

    1er décembre 2013, par e271p314

    I wrote a code which starts to record screen capture from the second it identifies mouse movement until it identifies the mouse didn't move for a predefined time (10 seconds).
    In python, on windows, how to wait until mouse moves ?
    If, I'm logged in to the session the code works fine, i.e. it starts and stops on time and records the screen capture. But, if I logout, I expect the script to identify that the mouse doesn't move and stop recording. Instead, the code doesn't stop and when I login again (long after the 10 seconds passed), the screen capture (from the previous session) keeps running, yelling the rt buffer is full and it keeps running until I close the cmd console even I expect it to work for 10 seconds (at least when I'm logged in). Any idea what is the issue ? I feel like it is something between the threading module and the session logout but I could be completely wrong about this.