Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (82)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8464)

  • 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

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

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