Recherche avancée

Médias (91)

Autres articles (77)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (10869)

  • ffmpeg Drawtext with timer not working

    8 octobre 2017, par codeul

    ffmpeg Drawtext with timer not working.

    Here’s my CLI code :

    ffmpeg -t 20 -i song.mp3 -i bluebg.jpg   -s "1280*720"  -movflags +faststart    -y vwithaudio.mp4

    ffmpeg -i vwithaudio.mp4 -vf "drawtext=enable='between(t,1,10)':fontsize=30:fontcolor=white:fontfile=pathtoofontfontfile.ttf: text='Test Text'" -acodec copy -y timerdemo.mp4

    No errors displayed at console.

    However, the text would not appear.

    I noticed that in the first command if I use a mp4 instead of bluebg.jpg, it works. So why cannot I use a background image for the first video so that drawtext timer works ?

    Would appreciate help from experts.

    Thanks in advance.

  • FFMpeg takes up the whole cpu and spams log on bug encounter

    16 octobre 2017, par Robert Vangor

    I have FFMpeg working on backend of website converting image + music to video. Every once in a while (probably 1/200 files), someone uploads something and cpu is always at 100% spamming error into log and filling up the whole space on drive, making the app unusable.

    I have literally at least a bilion lines of this in log

    [png @ 0x50f0700] Invalid PNG signature 0x2020202020202020.
    Error while decoding stream #0:0: Invalid data found when processing input

    Here is an example of command that caused it this time :

    ffmpeg -y -v error -loop 1 -r 1 -i image.png -i song.mp3 -vcodec libx264 -acodec copy -vf scale=trunc(iw/2)*2:trunc(ih/2)*2 -preset ultrafast -r 1 -shortest output.mp4

    What can I do if I don’t have a control over files that get converted ?

  • avfilter : Add tonemap vaapi filter for H2S

    2 décembre 2019, par Xinpeng Sun
    avfilter : Add tonemap vaapi filter for H2S
    

    It performs HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion
    with tone-mapping. It only supports HDR10 as input temporarily.

    An example command to use this filter with vaapi codecs :
    FFMPEG -hwaccel vaapi -vaapi_device /dev/dri/renderD128 -hwaccel_output_format vaapi \
    - i INPUT -vf 'tonemap_vaapi=format=p010' -c:v hevc_vaapi -profile 2 OUTPUT

    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
    Signed-off-by : Zachary Zhou <zachary.zhou@intel.com>
    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] configure
    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_tonemap_vaapi.c