Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (48)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10869)

  • 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


    


  • Dose all H.264 video stream can be decompressed using Video Toolbox in iOS 8 ?

    10 octobre 2016, par fernandowei

    I met some h.264 video files which show large area of green on the screen without any error when decoding using Video Toolbox while I can decode most other h.264 video files successfully.

  • I want to use C# to get the first frame of a video as a preview image of the video without using ffmpeg to achieve it [closed]

    19 avril 2023, par anton

    I have some video files here. My client asked me to edit and format these video files and some text content and display them. Of course, C# is required. Since ffmpeg has 100+ mb, it's too big. Is there any other alternative or other more portable three-party library ?

    


    I'm using ffmpeg now, but it's too big, it needs to be started from the command line, and it can't be packaged perfectly with fody.

    


    I wonder if there is a more lightweight or embedded way to replace it to get the first frame of the video as a preview of the video

    


    I'm using winform not WPF