Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10756)

  • ismindex : Use the individual stream duration instead of the global one

    3 octobre 2013, par Martin Storsjö
    ismindex : Use the individual stream duration instead of the global one
    

    The stream duration is used for calculating the duration of the
    last fragment easily without manually parsing anything else than
    the mfra/tfra atoms. When the global file duration was used
    previously, the duration of the last fragment could end up wrong
    if the streams weren’t equally long.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tools/ismindex.c
  • Convert video into individual frames using Python without ffmpeg ?

    22 janvier 2021, par Mridula Madhusudan

    I need to compare 2 videos to check whether they are the same.

    &#xA;&#xA;

    So I am planning to do the following :

    &#xA;&#xA;

      &#xA;
    1. Split both the videos into individual frames
    2. &#xA;

    3. Compare each frame with the corresponding frame of the ref video using Python Image Lib
    4. &#xA;

    5. Count the number of different frames to decide whether they are same.
    6. &#xA;

    &#xA;&#xA;

    I would like to know whether there is any function in Python to help me with the first step, i.e., to split the video into individual frames. I do not want to use ffmpeg to do the splitting.

    &#xA;&#xA;

    Thanks in advance for the help

    &#xA;

  • How to grab individual frames from streaming video with VLC.DotNet and pass them to OpenCV

    12 février 2018, par user2219675

    I have a RTP video stream (MPEG TS & H264) that does not display well when opened with OpenCV ffmpeg. The video is not decoded well and contains artifacts while it is displayed correctly in VLC. So I thought to grab the video frames with VLC library (VLC DotNet) convert them to Mat and pass them to OpenCV.

    I couldn’t find any similar solutions. The only solution that seems non optimal is to transcode the stream in VLC to MJPEG stream and them open it in OpenCV.

    Does anyone have a better idea ?