
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (61)
-
Participer à sa traduction
10 avril 2011Vous 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 (...) -
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (13837)
-
avformat/smacker : Cosmetics
29 mars 2020, par Andreas Rheinhardtavformat/smacker : Cosmetics
This is mainly about improving legibility of the code and getting rid of
overlong lines by using variables for st->codecpar instead of accessing
the codecparameters via st->codecpar->.Also, some code has been moved to better fitting places.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
How to round a square image and put it on video
27 juillet 2022, par Erez gitI've a video, videoPath.
I've a square image, squarePath.


This code places the squarePath on the video at a desired position to output, outputVideo.


final String[] cmd = new String[]{"-i", videoPath, "-i", squarePath, "-filter_complex", "[1:v][0:v]scale2ref=(300/300)*175:175[wm][base];[base][wm]overlay=(main_w-overlay_w)/2:(343)", "-pix_fmt", "yuv420p", "-c:a", "copy", "-y", outputVideo};

int res = FFmpeg.execute(cmd);



I would like to round the squarePath in the same command. Is it possible ?


This is the code to make it rounded as I found :


ffmpeg -i avatar.png -i mask.png -filter_complex [0]scale=400:400[ava];[1]alphaextract[alfa];[ava][alfa]alphamerge output.png



but I don't understand how to merge these two commands.


-
Revision 7d5bffc452 : Adding vpx_sse_to_psnr() function. Removing all copies of identical vp8_mse2psn
27 février 2014, par Dmitry KovalevChanged Paths :
Modify /vp8/encoder/onyx_if.c
Delete /vp8/encoder/psnr.c
Delete /vp8/encoder/psnr.h
Modify /vp8/encoder/temporal_filter.c
Modify /vp8/vp8cx.mk
Modify /vp9/encoder/vp9_onyx_if.c
Delete /vp9/encoder/vp9_psnr.c
Delete /vp9/encoder/vp9_psnr.h
Modify /vp9/encoder/vp9_temporal_filter.c
Modify /vp9/vp9cx.mk
Add /vpx/internal/vpx_psnr.h
Add /vpx/src/vpx_psnr.c
Modify /vpx/vpx_codec.mk
Adding vpx_sse_to_psnr() function.Removing all copies of identical vp8_mse2psnr/vp9_mse2psnr functions.
Using vpx_sse_to_psnr() instead in all places.Change-Id : I15beef9834d43d8fc8a8a7a2d1fc5de3d658fed8