Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (102)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (15791)

  • h264_sei : use a separate reader for the individual SEI messages

    19 mai 2017, par Anton Khirnov
    h264_sei : use a separate reader for the individual SEI messages
    

    This tells the parsing functions the payload size and prevents them from
    overreading.

    • [DH] libavcodec/h264_sei.c
  • lavfi/src_movie : Use movie_common_init instead individual wrappers

    16 juin 2013, par Alexander Strasser
    lavfi/src_movie : Use movie_common_init instead individual wrappers
    

    Makes it easier to understand that there is no difference in init
    callback for movie and amovie. Also saves a few lines of code.

    Signed-off-by : Alexander Strasser <eclipse7@gmx.net>

    • [DH] libavfilter/src_movie.c
  • Make video from individual frames (PNGs) and add audio track

    30 novembre 2020, par IntergalacticSpaceMonkey

    I have been working on a video processing tool that takes each frame from an input video and saves the result as a series of images. So, in essence, if my video has a length of 5 minutes, and has 25 fps, I will get 7500 individual frames.

    &#xA;

    What I want is then to put this back into a video format, but at the same time also add the audio track from the original source. Is this possible with ffmpeg ? Also, would it be possible to automatically determine the fps on the original video source and then use this as fps value for ffmpeg for the video + audio track in the new video file ?

    &#xA;