Recherche avancée

Médias (91)

Autres articles (48)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7458)

  • vaapi_encode_h265 : Ensure that ref pics are always in the RPS

    25 janvier 2019, par Mark Thompson
    vaapi_encode_h265 : Ensure that ref pics are always in the RPS
    

    When making a new P-frame when B-frames are present the previous P-frame
    is normally in the DPB because it will be referred to by subsequent
    B-frames. However, this is not true if there are no B-frames, or in edge
    cases where a GOP ends with two P-frames. Fix this by adding the direct
    ref pics to the RPS explicitly.

    Fixes #7699.

    Tested-by : Ullysses A Eoff <ullysses.a.eoff@intel.com>

    • [DH] libavcodec/vaapi_encode_h265.c
  • How to draw - dynamic - "safe areas" in ffplay

    16 juin 2023, par F.O.R.A.R.T.

    we need to preview videos with overlayed so-called "safe areas" according to this EBU document : SAFE AREAS FOR 16:9 TELEVISION PRODUCTION.

    &#xA;

    Here's the scheme for 1080p resolution :&#xA;1080p Safe Areas

    &#xA;

    Those consist of three different "zones", each with the same percentage size-to-the-edge of the video frame for any resolution :

    &#xA;

      &#xA;
    • Action Safe Area (GREEN box) : 3.5%
    • &#xA;

    • Graphics Safe Area (RED box) : 5%
    • &#xA;

    • 4:3 Safe Area (GREY box) : 16.25%
    • &#xA;

    &#xA;

    It should be easily achieveable using the drawbox command, but how can be dynamically adapted to any video resolution ?

    &#xA;

  • Converted video is not played in Firefox

    20 juillet 2023, par Kiten

    I have a code that accepts the video file from the client converts it and saves it on the server with .mp4 extension. Video processing is made using fluent-ffmpeg. Here is the code :

    &#xA;

    ffmpeg()&#xA;  .size(&#x27;360x?&#x27;)&#xA;  .videoCodec(&#x27;libx264&#x27;)&#xA;  .output()&#xA;  .on("end", () => {&#xA;    console.log(`Video saved with resolution 360`);&#xA;    res.json(&#x27;Uploaded&#x27;)&#xA;  })&#xA;  .on("error", (error) => {&#xA;    console.error(&#xA;      `Error saving video with resolution 360:`,&#xA;      error&#xA;    );&#xA;    res.status(500).json({ message: "Conversion error" });&#xA;  })&#xA;  .run();&#xA;

    &#xA;

    The problem is that the resulting files are not played in the Firefox browser (but work in Microsoft Edge and Google Chrome).&#xA;Is it possible to change the parameters so that the resulting files are compatible with Firefox browser ?

    &#xA;