Recherche avancée

Médias (91)

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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 (10541)

  • vf_showinfo : show timebase & framerate too

    3 novembre 2015, par Michael Niedermayer
    vf_showinfo : show timebase & framerate too
    

    (cherry picked from ffmpeg commit fdb93996811bacfa7b82995cdc0f93c46f3dc6cc)
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavfilter/vf_showinfo.c
  • ffmpeg how to show each frame for 1 second ?

    26 juin 2022, par Paulo

    I have a video, recorded at 7 fps. It's 17 seconds long and has 122 frames.&#xA;I want to keep all frames but show them 1 per second, I want the same video to last 122 seconds. I don't want to lose information, but I also don't want the file size to increase.&#xA;How can I do that ? All the ffmpeg options I see change the frame rate but keep the duration or create/drop frames.

    &#xA;

  • Can't show image with opencv when importing av

    5 mars, par Flojomojo

    When importing the PyAv module, I am unable to show an image with opencv using imshow()

    &#xA;

    Code without the PyAv module (works as expected)

    &#xA;

    import cv2&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    Code with the import (doesn't work, just hangs)

    &#xA;

    import cv2&#xA;import av&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    OS : Linux arch 5.18.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 09 Jun 2022 16:14:10 +0000 x86_64 GNU/Linux

    &#xA;

    Am I doing something wrong or is this a (un-)known issue ?

    &#xA;