Recherche avancée

Médias (91)

Autres articles (51)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5389)

  • 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


    


  • How to convert a video to match an existing video (codec, fps, bitrate, height, width, etc.) ? [duplicate]

    30 octobre 2020, par Mahdi Saheb

    I have a video file and can see the info using ffmpeg -i video.mp4. The question is how to use this data to encode another video file to match with this ?

    


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