Recherche avancée

Médias (91)

Autres articles (92)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9327)

  • How to read .mp4 files in opencv

    9 mai 2016, par Noah

    I am totally newbie in OpenCV, C++. Trying to read an mp4 video but found OpenCV does not support mp4, it only reads avi(I am not sure whether I am write or wrong). After an online research came to know ffmpeg is the best option to convert mp4 to avi for further processing.

    I am using OpenCV 3.0 with visual studio 2012. I saw there is a dll file, opencv_ffmpeg300.dll in OpenCV C:\opencv\build\x86\vc11\bin folder. Is there any way I can use this dll file to read and convert my video ?

    It will be really appreciating if someone can provide me some guidelines, I am lost in the OpenCV world totally.

    For video,

    Video I/O:
      Video for Windows:           YES
      DC1394 1.x:                  NO
      DC1394 2.x:                  NO
      FFMPEG:                      YES (prebuilt binaries)
        codec:                     YES (ver 55.18.102)
        format:                    YES (ver 55.12.100)
        util:                      YES (ver 52.38.100)
        swscale:                   YES (ver 2.3.100)
        resample:                  NO
        gentoo-style:              YES
      OpenNI:                      NO
      OpenNI PrimeSensor Modules:  NO
      OpenNI2:                     NO
      PvAPI:                       NO
      GigEVisionSDK:               NO
      DirectShow:                  YES
      Media Foundation:            NO
      XIMEA:                       NO
      Intel PerC:                  NO
  • Zooming animation in FFMPEG

    2 novembre 2015, par dmcontador

    I need to make a zooming animation for a video input.

    Making a panning animation is possible with the crop filter with something like this :

    "crop=320:240:max(0\\,min(iw-ow\\,n)):0"

    Where the first two parameters, width and height, are fixed, and the second two parameters, accept frame number n or timestamp t as expression parameters.

    But width and height are evaluated only once (and cannot use n or t), so I cannot crop a size in function of time and then apply a scale filter to the original size.

    I know I can :

    • Change the filter after pulling each frame from the buffersink (I’m not in the command line, I’m using the libraries in my software). I’m doing that already, but no for every frame, only by user request in an online application.
    • Use geq filter to "apply a generic equation to each frame".

    Both approaches seem expensive. Is there another filter or approach I could use ?

    Note that I’m using zeranoe FFMPEG libraries in Windows. I’d rather not develop my own filters or modify FFMPEG source.

  • FFMPEG : Get the Scene Change Detection value for all frame

    14 novembre 2022, par celacanto

    I'm trying to measure how much a movies is "fast" (more action in the screen and quick scene chances). I don't want just a single value for the movie, but values along the movie to see how the action varies during it. After normalize the frame rate of the movies (10 fps), my idea is to compare each frame with the previous. I'm not only interest if the scene has changed, but also, if there was no cut, how much movement there is. Not only people/object movement but also, camera movement. In summary the paced (I think that the term) of the scenes.

    



    My idea was to use the scene function from ffmpeg as a metric. But looking at the document and examples online I'm thinking I can only use the value of the Scene Change Detection as a threshold to return frames informations, but I can't get ffmpeg to return the value. Is that right ? There is any way I can make it return the value ?