Recherche avancée

Médias (91)

Autres articles (18)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (4243)

  • Revision f9404f2406 : Revert "Revert "SSSE3 convolution optimization"" This reverts commit b645257121

    13 janvier 2014, par Yunqing Wang

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


     Add /vp9/common/x86/vp9_subpixel_8t_intrin_ssse3.c


     Modify /vp9/vp9_common.mk



    Revert "Revert "SSSE3 convolution optimization""

    This reverts commit b645257121da20b422dbbebf02aae0fc6dff95d4.

    Change-Id : I60d1bf57ae8e9eb6127f42f2d5a780124ac51b45

  • FFMpeg printing "Option pixel_format not found" when using "pix_fmt"

    25 avril 2022, par boooba

    I'm trying to do a relatively simple task - convert a video from one pixel format to another by re-encoding. This is my current command :

    &#xA;

    ffmpeg -hide_banner -loglevel error -pix_fmt yuv444p -i "%1" video.mp4&#xA;

    &#xA;

    Where %1 is the filename. However, strangely enough, ffmpeg prints out this :

    &#xA;

    Option pixel_format not found.&#xA;

    &#xA;

    It's in red, so it's an error. Adding -loglevel verbose does not give any more information. I'm really confused about this - I did not define any "pixel_format" option. This issue occurs both when calling this command from a batch file and directly from a cmd.exe instance.

    &#xA;

    Replacing "pix_fmt" with "pixel_format" and putting pix_fmt after -i does not solve the issue.

    &#xA;

  • FFmpeg command is very slow on Android even with "-preset", "ultrafast"

    7 janvier 2019, par 1234567

    FFmpeg command is very slow

    This is the FFmpeg command I am using

    {
    "-y","-i",j, "-filter_complex",
    "amovie="+audio+":loop=1000," +
    "asetpts=N/SR/TB,atrim=0:10,adelay=20000|20000,apad,volume=1.5[a1];" +
    "[0:a]volume=3.5[a2];" +
    " [a1][a2]amerge,pan=stereo|c0code>

    It has a simple 5 min and 30 sec long video
    and size is 32 mb, but it takes 9 min for ffmpeg to add audio to video.

    Even after I have added "-preset", "ultrafast" it’s really slow

    How Can I speed up the process.