
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (61)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (11770)
-
aacenc : Fix number of coefficients used in a LFE channel.
29 juillet 2011, par Nathan Caldwellaacenc : Fix number of coefficients used in a LFE channel.
-
x264/avcodec : Deduce frame sequence number from NAL unit
4 avril 2014, par Dan TumaykinI’m using avcodec H264 decoder in my project. I receive NAL units from network, stick together NALs from same frame (additional header is added on network layer) and than pass to the decoder. I was wondering if frame sequence number is encoded into NAL unit - it would be logical, as we need the reference to IDR frames.
If this information is present - how can I extract it ?
Right now I looking into ITU-T H.264 specification, which is quite complex I can admit. So far I have not found the answer to my question.
-
Remove video noise from video with ffmpeg without producing blur / scale down effect
17 avril 2024, par Sucahyo AjiMy 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.


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


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


I have tried video filter :


- 

-
nlmeans=s=30:r=3:p=1


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


-
owdenoise=8:6:6


-
hqdn3d=100:0:50:0


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


-
dctdnoiz=sigma=30:n=4


-
fftdnoiz=30:1:6:0.8


















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) :


- 

- scale=960:540,removegrain=3:0:0:0,pp=dr/fq|8,scale=1920:1080




code example


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"


Part of the image

The image:


-