Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (55)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (8538)

  • Revision 89fbf3de50 : Add an MMX fwht4x4 7% faster encoding a desktop lossless at RT speed 4. Change

    5 mai 2014, par Alex Converse

    Changed Paths :
     Modify /test/fdct4x4_test.cc


     Modify /vp9/common/vp9_rtcd_defs.pl


     Add /vp9/encoder/x86/vp9_dct_mmx.c


     Modify /vp9/vp9cx.mk



    Add an MMX fwht4x4

    7% faster encoding a desktop lossless at RT speed 4.

    Change-Id : I41627f5b737752616b6512bb91a36ec45995bf64

  • Speed up video with FFmpeg with low I-frame distance [on hold]

    5 mai 2014, par Kevin Chromik

    I got a video with 60 fps and h264 encoded (.mp4), audio layer is removed. Now I want to speed up the video 4x faster with FFmpeg, but I would like to have a very low I-frame distance to be able to perform very precise and fast seeking. I don’t need a high compression. Does someone has an idea how I could achieve that ?

    Thanks in advance.

  • FFMPEG - Reduce speed / framerate of resulting video ?

    29 avril 2014, par shikata

    I’m using this commnand in order to convert a set of JPGs into a video. The code works but the resulting video is too fast

    exec('ffmpeg -y -f image2 -i img%d.jpg video.mpg 2>&1 >/dev/null', $output, $exit_status);

    I’ve tried to add -r 15 before the output file name but it didn’t work.

    Here what I’ve tried but didn’t work :

    exec('ffmpeg -y -f image2 -i img%d.jpg -r 15 video.mpg 2>&1 >/dev/null', $output, $exit_status);

    Any hints would be highly appreciated