Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (13319)

  • FFMPEG : Overlay PNG on video with optional audio track

    21 avril 2015, par Daniel Jacob Archer

    I’m using this command to overlay a transparent PNG over a video, and using the audio track from the video to be the only audio track in the output file. Unfortunately, this fails if the video does not have an audio track. Any recommendations on making this audio track optional (if there isn’t one in the video) ?

    ffmpeg -y -i 'video_path' -i 'overlay_path' -filter_complex 'overlay[out],amix=inputs=1,pan=stereo|c0=c0|c1=c0' -map '[out]' -movflags +faststart output.mp4
  • WebM muxer writes WebVTT subtitle track

    9 juillet 2013, par Matthew Heaney
    WebM muxer writes WebVTT subtitle track
    

    The Matroska muxer now allows WebVTT subtitle tracks to be written
    while in WebM muxing mode.

    WebVTT subtitle tracks have four kinds : "subtitles", "captions",
    "descriptions", and "metadata". Each text track kind has a distinct
    Mastroska CodecID and track type, as described in the temporal
    metadata guidelines here :

    http://wiki.webmproject.org/webm-metadata/temporal-metadata/webvtt-in-webm

    When the stream has codec id AV_CODEC_ID_WEBVTT, the stream packet is
    serialized per the temporal metadata guidelines cited above. The
    WebVTT cue is written as a Matroska block group. The block frame
    comprises the WebVTT cue id, followed by the cue settings, followed by
    the cue text. (The block timestamp is synthesized from the cue
    timestamp.)

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroska.h
    • [DH] libavformat/matroskaenc.c
  • udp : Keep track of include and exclude sources separately

    26 juillet 2013, par Ed Torbett
    udp : Keep track of include and exclude sources separately
    

    This allows us to explicitly fail if the caller tried to set
    both inclusions and exclusions at the same time.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/udp.c