Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (109)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • How to merge list of videos with frame specifiec order using ffmpeg ?

    9 décembre 2015, par Il'ya Zhenin

    I have a list of files :

    even_0.avi
    odd_0.avi
    even_1.avi
    odd_1.avi
    ...
    even_n.avi
    odd_n.avi

    And I want to merge them in a single video file in such a way, that zero frame would be taken from even_0.avi, first frame from odd_0.avi, second - from even_0.avi and so on.

    And if all frames in even_0.avi are taken, then next frame we will take from even_1.avi, next from odd_0.avi, next again from even_1.avi. Basically, when one video ends, we just start taking frames from the next video with prefix "even_" or "odd_".

    I just started using ffmpeg, know, how to simply merge videos, change resolution, fps and so on, but this is beyond my power, so, please, help.

  • Create an mp4 video from list of frames using ffmpeg

    11 août 2018, par Yevgeni Burshtein

    I have an directory with images that looks like this :

    frame0d.jpg
    frame1d.jpg
    frame2d.jpg
    ...
    frame4297d.jpg

    I need to create mp4 file with 30 fps from them.

    I’ve tried command :

    ffmpeg -framerate 30 -i frame%04d.jpg video.mp4

    But it fails with error :

    [image2 @ 0000026fd7c5a000] Could find no file with path 'frame%04d.jpg' and index in the range 0-4
    frame%04d.jpg: No such file or directory

    Thanks a lot !

  • Get the list of I-Frames in a video using Python

    1er mars 2021, par Tina J

    I'm trying to get the list of indexes for all I-frames in a video in Python (and later save a portion of them as JPEG). Right now, I can traverse all frames using FFProbe in terminal, and see which one is I-frame :

    



    ffprobe -select_streams v -show_frames -show_entries frame=pict_type -of csv 18s.mp4


    



    which gives me something like this :

    



    frame,I
frame,B
frame,P
frame,B
frame,P
frame,B


    



    But how can I do that in Python (I'm in Windows) and get a list of all their indexes ?