Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (17)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (3358)

  • Anomalie #2418 : extensions filtres image : Manque d’une api stable

    16 novembre 2011, par cedric -

    Non le ticket dénote d’un quiproquo. Le choix de la librairie fait dans l’espace privé ne concerne exclusivement que les opérations de réduction des images (changement de taille) qui est l’opération indispensable minimale. Tous les filtres images ne fonctionnent qu’avec GD2 qui est la librairie de (...)

  • Extracting the index of frame selected by ffmpeg thumbnail filter

    21 janvier 2019, par ashwinbhy

    I use the following command for extracting the representative frame out of every 10 frames from the video.

    ffmpeg -i input.avi -r 10 -vf thumbnail=10 -vsync 0 ./Output/%06d.png

    If i get the 4th frame selected from 10-20th frames, i want to know the 2nd frame selected was 24th in the original one.

    Right now the output is continuous 1,2,3.. n.png

  • I want to generate frames from a CCTV video using FFMPEG and save the frames as the time that they represent

    6 décembre 2014, par Jason Harris

    I am using mac os x terminal.

    So far I have mananaged the following code :

    ffmpeg -i cctvfootage.flv -f image2 -vf fps=fps=1 frames/frame_04d.png    

    The above code creates a frame for every second of the video, but names each frame as frame_0001.png, frame_0002.png, and so on. Although this is helpful, it is not the correct naming structure that I want.

    The date and time that the video footage starts from is 20th November 2014 at 13:46:12.

    The output name I want will be something like frames_20112014_134612.png (frames_DDMMYYYY_HHMMSS) for the first, frames_20112014_134613.png for the second, ect.

    This will then identify each frame as the day and time that the image is taken from.