Recherche avancée

Médias (91)

Autres articles (62)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (4815)

  • Telling CMake in OpenCV where to find local FFMPEG library

    28 août 2014, par Unapiedra

    I want to install OpenCV with video support, especially ffmpeg.

    I installed ffmpeg by hand with the prefix ~/.local. Primarily that means that the executable can be found under ~/.local/bin/ffmpeg and that the libraries are under ~/.local/lib/libavformat.a etc.

    I then downloaded OpenCV from the master branch on Github. Running cmake .. in build checks the configuration and reports that OpenCV won’t be compiled with FFMPEG support.

    I tried setting LD_LIBRARY_PATH, to no avail. I tried running cmake with -DCMAKE_PREFIX_PATH=/home/.../.local/, that also doesn’t work. Compiling ffmpeg with shared libraries also hasn’t worked.

  • Image orientation chaning while making image from a video using ffmpeg [on hold]

    19 janvier 2016, par rakeshp

    I am making image thumbnails from video on Linux, but for some videos the orientation is changing and not coming as per the original video orientation. Here is my code.

    ffmpeg -itsoffset 4 -i test_video.mov -ss 00:00:01.000 -vf scale=-1:240 -vframes 1 test_image.png

    I tried with multiple options like adding "-vf transpose=1 " to the above code, but still it didn’t work for me.Can anyone help me here.

  • How to view the commands while making FFmpeg ?

    28 décembre 2011, par Saptarshi Biswas

    When I make ffmpeg, I can see following lines

    CC  ffmpeg.o
    LD  ffmpeg_g
    CP  ffmpeg
    STRIP   ffmpeg

    What is a quick way to find the commands for CC, LD etc. with as less modification to the Makefile ?