Recherche avancée

Médias (91)

Autres articles (61)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (10354)

  • Using FFmpeg with Nvidia GPU acceleration

    27 janvier 2021, par derekc23

    I’m using Using FFmpeg with NVIDIA GPU Hardware Acceleration : : NVIDIA Video Codec SDK Documentation for Windows 10

    


    All goes well until I hit the last three commands :

    


    • Goto nv-codec-headers directory and install ffnvcodec

    


    make install PREFIX=/usr

    


    • Go to the FFmpeg installation folder and run the following command.

    


    ./configure —enable-nonfree –disable-shared —enable-cuda-sdk —enable-libnpp –-toolchain=msvc —extra-cflags=-I../nv_sdk —extra-ldflags=-libpath :../nv_sdk

    


    • Compile the code by executing the following command.

    


    make -j 8

    


    I cannot get the ‘make’ command to work – I get 'make' is not recognized as an internal or external command,
operable program or batch file.
I did try the next command, the ./configure one, this was also rejected.

    


    The documentation is : https://docs.nvidia.com/video-technologies/video-codec-sdk/ffmpeg-with-nvidia-gpu/

    


    Can anyone please help with this ?

    


  • RFC 4175 support in ffmpeg ?

    28 novembre 2018, par Morix Dev

    As of today, is RFC 4175 (aka SMPTE 2110-20) currently supported in the released version of ffmpeg (4.1) ?

    Surfing the web I am only able to find these two references :

    But it is not clear to me if it has been merged into the released version or not...

    If so, are there some examples of ffmpeg / ffplay command lines for testing that ?

  • Android and JNI, pipe data to FFmpeg

    2 décembre 2014, par William Seemann

    I’m trying to create a metadata retriever based on FFmpeg. Since raw Android application resources are often only accessible using a file descriptor I need a way to pipe this data to FFmpeg via JNI. I know FFmpeg supports a "pipe" protocol :

    UNIX pipe access protocol.

    Allow to read and write from UNIX pipes.

    The accepted syntax is:

       pipe:[number]

    number is the number corresponding to the file descriptor of the pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr). If number is not specified, by default the stdout file descriptor will be used for writing, stdin for reading.

    For example: cat test.wav | ffmpeg -i pipe:0

    My question is, how do I programmatically emulate cat test.wav | ffmpeg -i pipe:0 using JNI and avformat_open_input using a FileDescriptor ? Is this possible ?