Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (32)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • Create video from set of images [duplicate]

    10 mars 2018, par Phillip Fotosyntese Jensen

    This question already has an answer here :

    I want to create a video file that is made from all of my Images. I have found my command to do so ffmpeg -framerate 25 -i *.jpg -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p output.mp4
    but I have a really large collection of images so the terminal is hitting me with "bash : /usr/bin/ffmpeg : Argument list too long" . How can I bypass this ?

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

    


  • How to execute the ffmpeg thumbnail extraction command using sub-process in django ?

    18 janvier 2017, par Nitish Kumar

    The following code we are using to extract the thumbnail images from video

    ffmpeg -i low.mkv -vf thumbnail=10,setpts=N/TB -r 1 -vframes 10 inputframes%03d.png

    This code is working absolutely fine on terminal, but it is giving an error when we are processing the same with subprocess in django.

    Our aim is to generate 10 Thumbnails from any length of the video

    Here is the code

    vaild_fps = "'thumbnail=10,setpts=N/TB -r 1 -vframes 10'"

    subprocess.call([settings.FFMPEG_PATH,
           '-i',
           input_file_path,
           '-vf',
           vaild_fps,
           thumbnail_output_file_path,            
       ]
    )

    Error No such filter : ’thumbnail=10,setpts=N/TB -r 1 -vframes 10’

    Error opening filters !