Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (7136)

  • Can I detect duplicated videos using ffmpeg ?

    28 décembre 2020, par Tobias

    Is it possible to detect duplicate videos (.mp4 files) using ffmpeg (or similar tools) ?

    


    There are around 3000 videos in my file system, some of them twice (since these are automatically downloaded by a bot from various sources). So it can happen that these differ a little from the video / audio quality.

    


    My first idea now would be to render the videos to a quality that is consistent and store the MD5 hash of the file in the database. There I would check for duplicate hashes.

    


    Is this the right approach or does anyone have an idea how I could best implement this ?

    


  • Stitching videos (with very precise camera angles) into 360 video [on hold]

    4 mai 2017, par Basset hound

    I can record videos with very precise camera angles.
    I also used Autopano Video to stitch the videos, the result is awesome.

    I was wondering, if I can record videos with very precise camera angels.
    Do I really need 3rd party commercial software to stitch the videos ?

    Can I get it down by C# or ffmpeg or OpenCV or open source ?
    Any hint or advice would be appreciated.

  • How to merge four videos on one screen with ffmpeg [duplicate]

    9 mai 2021, par Andrey Prokhorenko

    I have a video test.mp4, and I need to make it appear four times at once on a screen.

    


    Here I found a command that makes two videos appear at a time

    


    ffmpeg -i input0.avi -vf "movie=input1.avi [in1]; [in]pad=640*2:352[in0]; [in0][in1] overlay=640:0 [out]" out.avi


    


    But it doesn't work with mp4 videos, and I need four videos at a time.