Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (66)

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

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

Sur d’autres sites (6010)

  • Generate frame images from video and compile them back to the video in-memory

    24 septembre 2020, par gumkins

    I have to remove some repeating frames from the beginning of a video file.

    


    For that I'm generating frame images from the video

    


    ffmpeg -i input.mp4 -qscale:v 2 frame_%04d.jpg

    


    This command generates a set of files with index in name. Then I'm analyzing frames against some criteria programmaticaly, removing useless ones and compiling the rest back to the video file

    


    ffmpeg -r 60 -start_number 0 -i "frame_%04d.jpg" -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4

    


    What I don't like in this schema that IO operations take part in the process. I would like to generate an array of buffers with binary data, then process it with Javascript and then pipe filtered ones back to ffmpeg without using the file system.

    


    Does ffmpeg have such possibility ?

    


  • FFMpeg/other video library - How to segment a video file into a stream of playable segments ?

    27 juin 2012, par Anders Branderud

    I want FFMpeg/other video library to create several segments out of an original video file ; and a meta data-file containing the name of the segments and other data required in order to play them as a stream.
    The files should be created in such a way that the segments can be played as a stream without any noticable glitches in the overlap of the media files.

    I also want to know what command to use for a media player to take and interpret the meta data-file and to play the video segments in their right order.

    I have managed to do this with GPAC.

  • Crop video by frame and save output as video

    3 avril 2018, par D_Corson

    I’m trying to resolve a question I had posted earlier (trying to only use FFMPEG) and am still stuck and hoping someone else has a solution.

    I have a video that I want to crop frame by frame with a varying locations to extract a region of interest. I can currently do this using moviepy which has been excellent, but I would like to try and solve this using only FFMPEG. The added constraints are that I would like to be able to crop the frame and put this in a new video without having to save the cropped images locally and compiling them.

    Thanks