Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (25)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (5864)

  • Add Transparent logo to directory of video files using FFmpeg

    16 juillet 2017, par Aariyan patel

    I’m using this code but logo not Transparent

    for %%I in ("C:\path\*.mp4") do ffmpeg.exe -i "%%I" -i C:\path\logo.png -filter_complex "[1:v]scale=0:0 [ovrl], [0:v][ovrl]overlay=W-w-10:H-h-10[watermark]" -map "[watermark]" -map 0:a -codec:v libx264 -preset veryfast -crf 18 -codec:a copy "C:\path\%%~nI.mp4" pause

    This code is working

    ffmpeg -y -i demo.mp4 -i watermark.png -filter_complex "[1]lut=a=val*0.3[a];[0][a]overlay=0:0" -c:v libx264 -preset ultrafast -an demo1.mp4

    But I want to convert directory of video files

  • vaapi_encode : Discard output buffer if picture submission fails

    16 février 2017, par Mark Thompson
    vaapi_encode : Discard output buffer if picture submission fails
    

    Previously this was leaking, though it actually hit an assert making
    sure that the buffer had already been cleared when freeing the picture.

    • [DBH] libavcodec/vaapi_encode.c
  • libavformat/flacenc : reject too big picture blocks

    30 octobre 2019, par Mattias Wadman
    libavformat/flacenc : reject too big picture blocks
    

    A too big picture will case the muxer to write a truncated block size (uint24)
    causing the output file to be corrupt.

    How to reproduce :

    Write a file with truncated block size :
    ffmpeg -y -f lavfi -i sine -f lavfi -i color=red:size=2400x2400 -map 0:a:0 -map 1:v:0 -c:v:0 bmp -disposition:1 attached_pic -t 1 test.flac

    Try to decode :
    ffmpeg -i test.flac test.wav

    Signed-off-by : Mattias Wadman <mattias.wadman@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/flacenc.c