Recherche avancée

Médias (91)

Autres articles (111)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (10555)

  • I want to crop videos with black frames on top and bottom

    10 février 2019, par jennie

    I want to crop videos with black frames on the bottom and top according to the frame rate as described in the video after crop

    how with ffmpeg ? How to crop Black Bars from Video

    Can you help me ! thank you so much !

    I want to crop videos with black frames on the bottom and top follow the scale as described in the video .

    Example image video

    video image after crop

    video after crop

  • avcodec/pngdec : do not blend on transparent black

    28 novembre 2014, par Benoit Fouet
    avcodec/pngdec : do not blend on transparent black
    

    There is no need to memset the zlib output buffer, as there is no
    blending happening there. Instead, do not blend when the dispose
    operation is set to ’background’ (tranparent black).

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/pngdec.c
  • Black detect ffmpeg and use in a javascript

    6 février 2023, par sol

    I had an ffmpeg script that allow me to detect black frames from a video file sample from the bottom.

    &#xA;

    and i want to create a javascript code that will allow me to do the same function sample from the bottom but its not working.

    &#xA;

    original code from ffmpeg script :

    &#xA;

    `ffmpeg -i LKE-BLACK.mp4 -vf "blackdetect=d=0.5:pix_th=0.10" -an -f null - 2>&1 | findstr blackdetect > output.txt

    &#xA;

    node script :

    &#xA;

    var fs = require(&#x27;fs&#x27;);&#xA;const ffmpeg = require("ffmpeg.js");&#xA;&#xA;var createStream = fs.createWriteStream("data.txt");&#xA;createStream.end();&#xA;&#xA;const transcode = async ({ target: { files }  }) => {&#xA;    message.innerHTML = &#x27;Loading ffmpeg-core.js&#x27;;&#xA;    await ffmpeg.load();&#xA;    message.innerHTML = &#x27;Start transcoding&#x27;;&#xA;    &#xA;    await ffmpeg.transcode(&#x27;-i&#x27;, &#x27;LKE-BLACK.mp4&#x27;, "-vf", "blackdetect=d=0.5:pix_th=0.10", &#x27;-an&#x27;, &#x27;-f&#x27;, &#x27;null - 2>&amp;1&#x27;, );&#xA;    message.innerHTML = &#x27;Complete transcoding&#x27;;&#xA;&#xA;    fs.writeFile("data.txt", function (err) {&#xA;        if (err) throw err;&#xA;        console.log(&#x27;File is created successfully.&#x27;);&#xA;      });&#xA;}&#xA;

    &#xA;