Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (102)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (13214)

  • hevc : pass the full HEVCNAL struct to decode_nal_unit

    25 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 : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/hevc.c
  • Loop movie and mix with audio by ffmpeg

    29 novembre 2020, par whitebear

    I have a movie file and an audio file with different length.

    &#xA;

    Audio file is longer than video file.

    &#xA;

    I want to loop video and mix with audio, then set length same as audio file.

    &#xA;

    ffmpeg -i "Pentagon_VJ_background_loop.mp4" -stream_loop -1 -t 60 -i "Out1.wav"  -map 0:0 -map 1:0 output.mp4&#xA;

    &#xA;

    With this I have -stream_loop -1 but movie doesn't loop. and have no way to set the length to audio file(I use -t 60 instead).

    &#xA;

    Does anyone help ??

    &#xA;

  • does movie filter in ffmpeg 4.3.1 support png format picture

    1er janvier 2021, par TONY

    I use ffmpeg's moive filter to add wartermark on my video.&#xA;The str is "const char *filter_descr = "movie=test.png:seek_point=3.2, scale=180 :-1, setpts=PTS-STARTPTS [over] ;[in] setpts=PTS-STARTPTS [main] ;[main][over] overlay=16:16 [out]" ;"&#xA;it shows that can't find codec, but if the wartermark picture is bmp ,then it's ok.&#xA;I found that the png code exists in ffmpeg, it should support png decoder.

    &#xA;