Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (72)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (10136)

  • ffmpeg split into frames

    4 novembre 2011, par bradleyg

    Hey, I want to split a video which is one second long (25fps)into 25 seperate video files. I know I can split it up into jpegs but I need to retain the audio. So when I recompile audio is still there.

    This is what I tried to grab the first frame only (with audio) :

    ffmpeg -i 1.mov -vcodec mjpeg -qscale 1 -an -ss 00:00:00:00 -t 00:00:00:1 frame1.mov

    But it doesn't seem to work. Am I wrong in assuming ffmpeg supports time stamps in this format ? hh:mm:ss:f ?

    Thanks

  • split video and keep pts unchanged

    31 mai 2020, par nobody0day

    I am trying to split a big video into small ones and keep the pts unchanged in small videos. Any ideas on how to program with ffmpeg library in c programming language.

    



    My first thought is that split video around the I-frame and keep the I-frame's pts as first_pts of next video but it didn't works.

    


  • Split a very short second video into multiple parts

    6 décembre 2020, par Nicolas Tapino

    I've been looking for a lot of softwares that can split videos into multiple parts but most of them only manage to split large videos to let's say 1 or 2 minutes for each part.

    


    What I would like to do is to actually split a few seconds video into, let's say, 10 or more parts (therefore less that one second each, but still not frames).

    


    I don't know if ffmpeg can be that precise or if there is any other solutions that exist.