Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11147)

  • Mat object to video pipe for video streaming [on hold]

    22 septembre 2015, par Stephen Philip

    I want to stream a video after video processing it using opencv, is there a way to do that.

  • I want to merge some images at start and end of video to generate new video

    5 juin 2014, par user1462994

    I am working on small project where i need to merge some images at start and end of existing video.
    At start of video i need to merge one image and at the end of video there will be multiple images merged.
    After merging the video the output file will be the video file having those images embeded as video.

  • How to use ffmpeg to extracted every nth frame from a video to generate a shorter new video ? [duplicate]

    12 octobre 2022, par J.W

    For example, a video length is 60 seconds with 25 FPS, there are 25 * 60 = 1500 frames.
How to extract the 1st frame every 5 frames, i.e., for the first second's 25 frames, need to extract the 5 frames at 1st, 6th, 11th, 16th and 21st, so the result new video would have 300 frames in total, and at the same time keep the same FPS (or increase FPS) to make the new video shorter, for example :

    


      

    1. to keep the result video to be 25 FPS (same as original video), the video length is 12 seconds ; or
    2. 


    3. to make the result video to be 30 FPS, the video length is 10 seconds
    4. 


    


    Note : the answer in the comment of this similar question solved my question :

    


    ffmpeg -an -i in.mp4 -vf framestep=5,setpts=N/25/TB -r 25 out.mp4