Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (92)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10021)

  • 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.