Recherche avancée

Médias (91)

Autres articles (83)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (3641)

  • FFMPEG command doesn't work in PHP, what am I doing wrong ?

    3 mars 2013, par Charlie Ryan

    I'm a bit of a beginner when it comes to PHP, and I'm trying to create a simple(ish) system where files are input, and then converted to html5 video in various resolutions.

    I've sorted out how to handle multiple file uploads etc, but now I'm having a problem.

    I can't seem to get exec to execute FFMPEG in PHP.

    For example, if I type this into my command line (Terminal on Mac OSX 10.8), It converts the video correctly :

    ffmpeg -i /Users/charlieryan/Desktop/MOV01785.MPG websample.mov

    This correctly outputs the converted video file into my home directory.

    However if I run this in PHP as follows :

    exec('ffmpeg -i /Users/charlieryan/Desktop/MOV01785.MPG websample.mov');

    Absolutely nothing happens ... my stat monitor doesn't register any change in processor use, and I can't find the output file anywhere on my system.

    Since I'm a bit of a noob at this, I'm assuming I'm doing something wrong, but what is it ?

    Thanks,

    Charlie

  • avformat/allformats : Making av_register_all() thread-safe.

    7 avril 2016, par Vivekanand
    avformat/allformats : Making av_register_all() thread-safe.
    

    When multiple threads tries to call av_register_all(), the first thread sets
    initialized to 1 and do the register process. At the same time, other thread might
    also call av_register_all(), which returns immediately because initialized is set to 1
    (even when it has not completed registering codecs). We can avoid this problem
    if we set initialised to 1 while exiting from function.

    Github : Closes #196

    • [DH] libavformat/allformats.c
  • lavu/float_dsp : avoid reg-stride in R-V V reverse_fmul

    30 septembre 2023, par Rémi Denis-Courmont
    lavu/float_dsp : avoid reg-stride in R-V V reverse_fmul
    

    This revectors the inner loop to reverse vectors element in vectors,
    thus eliminating the negative register stride. Note that RVV does not
    have a vector reverse instruction, so this uses a gather.

    • [DH] libavutil/riscv/float_dsp_rvv.S