
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (102)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6254)
-
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