Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (112)

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

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

Sur d’autres sites (14984)

  • hevc : pass the full HEVCNAL struct to decode_nal_unit

    24 janvier 2015, par Hendrik Leppkes
    hevc : pass the full HEVCNAL struct to decode_nal_unit
    

    This enables decode_nal_unit to access additional fields added in
    subsequent commits.

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

    • [DH] libavcodec/hevc.c
  • libavformat/mxfdec.c : export the full UMID as metadata

    10 janvier 2015, par Mark Reid
    libavformat/mxfdec.c : export the full UMID as metadata
    

    Previous version reviewed-by : tim nicholson

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

    • [DH] libavformat/mxfdec.c
  • Create a time-lapse movie by speeding a video up to the time of an audio file

    26 décembre 2014, par Peak Reconstruction Wavelength

    Input

    1. Audio file, mp3, 2 minutes
    2. Video file, mov, 1920 x 1080, 29 fps, 13 minutes

    I want to know which command to use to have a time-lapse movie mov as a result, which is two minutes long while remaining 29 fps, so it speeds up to match the time of 1. and the audio track of 2. is replaced with 1..

    My approach

    ffmpeg.exe" -i "x.MOV" -i "y.mp3" -vcodec copy -async 10 -ab 128k "e.MOV"

    which only puts the audio file to the beginning.