
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (35)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (...) -
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.
Sur d’autres sites (3566)
-
changing background color after merging videos using ffmpeg
27 juillet 2019, par S.Ti am putting 2 movies side by side and i want to change the background color in the spaces that left near them.
this command is taking 2 videos and placing then one on top the other. there is a gap between them and also margins from all sides. i want that all the gaps ( the rectangle that hosts the videos) will be in a specific color(it is now green, i think its the default)
ffmpeg -threads 11 -i 1.mp4 -i 2.mp4 -i logo.png -filter_complex
[0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=yellow[a];
[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];
nullsrc=size=1080x1080[base];[a]setpts=PTS-STARTPTS,scale=666x500[top];
[b]setpts=PTS-STARTPTS,scale=666x500[bottom];
[base][top]overlay=207:35[tmp1];[tmp1][bottom]overlay=207:545[video];
[0:a]apad[apa];[1:a]apad[apa1];[apa]
[apa1]amix=inputs=2:duration=longest[audio];[2:v]scale=150:60[ovrl];
[video][ovrl]overlay=227:55[videoandlogo] -map [videoandlogo] -map
[audio] -b 10000k -t 11 out.mp4I want to change the default color to one that i decide. Thanks.
-
Revision 6b223fcb58 : Enable decoder to pass through color space info This commit added a field to vp
9 janvier 2015, par Yaowu XuChanged Paths :
Modify /test/encode_test_driver.cc
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/vp9_iface_common.h
Modify /vpx/vpx_image.h
Modify /vpx_scale/yv12config.h
Enable decoder to pass through color space infoThis commit added a field to vpx_image_t for indicating color space,
the field is also added to YUV_BUFFER_CONFIG. This allows the color
space information pass through the decoder from input stream to the
output buffer.The commit also updated compare_img() function with added verification
of matching color space to ensure the color space information to be
correctly passed from encode to decoder in compressed vp9 streams.Change-Id : I412776ec83defd8a09d76759aeb057b8fa690371
-
FFMPEG Replacing black color fragments with alpha channel transperency
31 décembre 2017, par kostya572I have "file.mov" video. It has a lot of blank black color fragments that have different durations.
I need to replace black color fragments that durates more than 5 seconds with transparency ? Is that possible to add some alpha channel for that purpose ?