Recherche avancée

Médias (91)

Autres articles (94)

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

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (6348)

  • x86 : Serialize rdtsc in read_time()

    8 juillet 2015, par Henrik Gramner
    x86 : Serialize rdtsc in read_time()
    

    Improves the accuracy of measurements, especially in short sections.

    To quote the Intel 64 and IA-32 Architectures Software Developer’s Manual :
    "The RDTSC instruction is not a serializing instruction. It does not necessarily
    wait until all previous instructions have been executed before reading the counter.
    Similarly, subsequent instructions may begin execution before the read operation
    is performed. If software requires RDTSC to be executed only after all previous
    instructions have completed locally, it can either use RDTSCP (if the processor
    supports that instruction) or execute the sequence LFENCE ;RDTSC."

    SSE2 is a requirement for lfence so only use it on SSE2-capable systems.
    Prefer lfence ;rdtsc over rdtscp since rdtscp is supported on fewer systems.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavutil/x86/timer.h
  • Revision 3c5256d572 : VP9_LPF_VERTICAL_16_DUAL_SSE2 optimization The vp9_lpf_vertical_16_dual functio

    29 avril 2015, par levytamar82

    Changed Paths :
     Modify /vp9/common/x86/vp9_loopfilter_intrin_sse2.c



    VP9_LPF_VERTICAL_16_DUAL_SSE2 optimization

    The vp9_lpf_vertical_16_dual function optimized for x86 32bit target. The hot
    code in that function was caused by the call to the transpose8x16.
    The gcc generated assembly created uneeded fills and spills to the stack. By
    interleaving 2 loads and unpack instructions, in addition to hoisting the
    consumer
    instruction closer to the producer instructions, we eliminated most of the fills
    and spills and improve the function-level performance by 17%.
    credit for writing the function as well as finding the root cause goes to Erik
    Niemeyer (erik.a.niemeyer@intel.com)

    Change-Id : I6173cf53956d52918a047d1c53d9a673f952ec46

  • How can I encode a video in a MP4 container using OpenCV 2.4.10 ? (Win 8.1)

    24 juin 2015, par Angie Quijano

    I have been trying to encode a vector that contains images, in a MP4 video. I have tried to use a lot of FOURCC codecs for this purpose, but I have not been successful.
    I have achieved to encode my vector in a AVI video using as CV_FOURCC code this : CV_FOURCC(’X’,’V’,’I’,’D’), but I really need to obtain a MP4 video. I have tried the following FOURCC codes : MP4S, MP4V, XVID, DVIX, X264, H264, FMP4, and others than I can’t remember.

    My line of code is :

    VideoWriter(videoName, CV_FOURCC('X','2','6','4'), fps, outputSize)
    where videoName = "OutputVideo.mp4", fps = 47, outputSize = [4225x2030].

    I checked if I built my OpenCV with Ffmpeg support and I got this :

    Video I/O:
      Video for Windows:           YES
      DC1394 1.x:                  NO
      DC1394 2.x:                  NO
      FFMPEG:                      YES (prebuilt binaries)
        codec:                     YES (ver 55.18.102)
        format:                    YES (ver 55.12.100)
        util:                      YES (ver 52.38.100)
        swscale:                   YES (ver 2.3.100)
        gentoo-style:              YES
      OpenNI:                      NO
      OpenNI PrimeSensor Modules:  NO
      PvAPI:                       NO
      GigEVisionSDK:               NO
      DirectShow:                  YES
      Media Foundation:            NO
      XIMEA:                       NO
      Intel PerC:                  NO

    I don’t know what I’m doing wrong. Can anyone help me, please ?

    Sorry for my english.