Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (73)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (14244)

  • avformat/matroskaenc : Don't use stream side-data size

    21 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Don't use stream side-data size
    

    av_stream_get_side_data() tells the caller whether a stream has side
    data of a specific type ; if present it can also tell the caller the size
    of the side data via an optional argument. The Matroska muxer always
    used this optional argument, although it doesn't really need the size,
    as the relevant side-data are not buffers, but structures. So change
    this.

    Furthermore, relying on the size also made the code susceptible to
    a quirk of av_stream_get_side_data() : It only sets the size argument if
    it found side data of the desired type. mkv_write_video_color() checks
    for side-data twice with the same variable for the size without resetting
    the size in between ; if the second type of side-data isn't present, the
    size will still be what it was after the first call. This was not
    dangerous in practice, as the check for the existence of the second
    side-data compared the size with the expected size, so it would only be
    problematic if lots of elements were to be added to AVContentLightMetadata.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • Extract H.264 data for a P-Frame using command line

    10 décembre 2019, par cloudraven

    I want to use ffmpeg to extract frame data from command line, similar to what av_read_frame does. I want to extract the full data of arbitrary frames without decoding or re-encoding them. (i.e. I expect extracted P-frames to be very small and not reconstructed from their reference frames)

    I know I can code a tiny tool for doing this, but I suspect this functionality may be already exposed through a bitstream filter in the command line. Is that the case ?

  • How to slice data into HDFS by using ffmpeg

    2 septembre 2016, par user1805861

    I checked here "Output of ffmpeg into HDFS directly" we can put ffmpeg data into HDFS .

    How to slice data into HDFS by using FFMpeg Segment muxer ?