Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (14197)

  • avfilter/asrc_anoisesrc : improve velvet noise output

    8 mai 2023, par Paul B Mahol
    avfilter/asrc_anoisesrc : improve velvet noise output
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/asrc_anoisesrc.c
  • avcodec/eac3dec : avoid float noise in fixed mode addition to overflow

    6 janvier 2023, par Michael Niedermayer
    avcodec/eac3dec : avoid float noise in fixed mode addition to overflow
    

    Fixes : 2.28595e+09 is outside the range of representable values of type 'int'
    Fixes : 54644/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-4816961584627712

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ac3.h
    • [DH] libavcodec/eac3dec.c
  • Remove video noise from video with ffmpeg without producing blur / scale down effect

    17 avril 2024, par Sucahyo Aji

    My videos are 1920x1080 recorded with high ISO (3200) using smartphone (to get bright view, backlight scene mode). It produce a lot of noise. I try many video filter but all of them produce blur similar to when we reduce the resolution in half then increase it back again.

    &#xA;

    Is there a good video noise filter that only remove noise without producing blur ?

    &#xA;

    Because if it produce blur, I would prefer to not do any filtering at all.

    &#xA;

    I have tried video filter :

    &#xA;

      &#xA;
    • nlmeans=s=30:r=3:p=1

      &#xA;

    • &#xA;

    • vaguedenoiser=threshold=22:percent=100:nsteps=4

      &#xA;

    • &#xA;

    • owdenoise=8:6:6

      &#xA;

    • &#xA;

    • hqdn3d=100:0:50:0

      &#xA;

    • &#xA;

    • bm3d=sigma=30:block=4:bstep=8:group=1:range=8:mstep=64:thmse=0:hdthr=5:estim=basic:planes=1

      &#xA;

    • &#xA;

    • dctdnoiz=sigma=30:n=4

      &#xA;

    • &#xA;

    • fftdnoiz=30:1:6:0.8

      &#xA;

    • &#xA;

    &#xA;

    All produce blur, some even worse. I have to use strong setting to make the noise moderately removed. I end up halving the resolution and use remove grain then scale it up again. This is much better for me than all the above method (pp filter is used to reduce size without reducing image detail) :

    &#xA;

      &#xA;
    • scale=960:540,removegrain=3:0:0:0,pp=dr/fq|8,scale=1920:1080
    • &#xA;

    &#xA;

    code example

    &#xA;

    FOR %%G IN (*.jpg) DO "ffmpeg.exe" -y -i "%%G"  -vf "nlmeans=s=30:r=3:p=1" -qmin 1 -qmax 1 -q:v 1   "%%G.jpg"

    &#xA;

    Part of the image
    &#xA;The image:

    &#xA;