
Recherche avancée
Autres articles (16)
-
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Keeping control of your media in your hands
13 avril 2011, parThe 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 (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (4382)
-
How to use filter of ffmpeg in android without command ?
18 mai 2016, par kempI use the filters of ffmpeg,it worked but add watermark, my filter is
"movie=/sdcard/my_logo.png[wm];[in][wm]overlay=10:10[out]"
,
i can not see any error ,does anyone give me some advice ? -
How can I use the blackframe filter in ffmpeg to only encode images above a certain threshold ?
8 août 2012, par andyrooI am using ffmpeg to make timelapse movies from still images.
I see that I can use the blackframe filter to get a list of dark frames in a video, but I would like to skip encoding those frames all together.
Is there a way that I can use the blackframe filter to avoid encoding frames below the blackframe threshold ? Ideally I would be able to do this on a Win7 machine using batch/powershell/python.
Using another open source program to remove/delete black frames first would be acceptable too.
-
Revision 3f10831308 : Fix bug in convolution functions (filter selection) (In response to Issue 604 :
23 août 2013, par Adrian GrangeChanged Paths :
Modify /test/convolve_test.cc
Modify /vp9/common/vp9_convolve.c
Fix bug in convolution functions (filter selection)(In response to Issue 604 :
https://code.google.com/p/webm/issues/detail?id=604)There were bugs in the convolution code for two cases :
1. Where the filter table was assumed to be aligned to a
256 byte boundary. The offset of the pixel in the
source buffer was computed incorrectly.2. Where no such alignment assumption was made. An
incorrect address for the filter table base was used.To fix both problems, I now assume that the filter table is
256-byte aligned and modify the pixel offset calculation to
match.A later patch should remove the restriction that the filter
table is aligned to a 256-byte boundary.There was also a bug in the ConvolveTest unit test
(convolve_test.cc).(Bug & initial fix suggestion submitted by Tero Rintaluoma
and Sami Pietilä).Change-Id : I71985551e62846e55e40de9e7e3959d4805baa82