Recherche avancée

Médias (91)

Autres articles (62)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (13620)

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

  • How to configure linking so that compiled binary finds libraries ?

    5 octobre 2015, par Jean Jordaan

    I’m compiling ffmpeg. Configuration :

     --prefix=/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build
     --extra-cflags='-I/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/include
     -I/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/include'
     --extra-ldflags='-L/home/john/zope/engage/zeocluster/ffmpeg/parts/x264-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/ogg-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/theora-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/lame-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/faac-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/faad-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/vpx-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/vorbis-build/lib
     -L/home/john/zope/engage/zeocluster/ffmpeg/parts/ffmpeg-build/lib'

    The build completes fine, and LD_LIBRARY_PATH=./parts/ffmpeg-build/lib:./parts/x264-build/lib ./parts/ffmpeg-build/bin/ffmpeg runs the binary.

    Why is that LD_LIBRARY_PATH necessary ? Didn’t I already tell the compiler to link against these libraries ?