
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (77)
-
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. -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5384)
-
tile option in FFMPEG command result to black screenshot
4 mars 2020, par sammaxI am managing to create a screenshot using ffmpeg engine and it works fine when I am try to output one individual image
ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "scale=width:high"
But when I try to create a multi-image (Thumbnail grid sheets) using
tile
option the output screenshot is empty blackffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "select=not(mod(n\,3000)),scale=320:240,tile=4x3"
and here is what I want to achieve image
-
Streaming a video to /dev/video0 using gstreamer and v4l2 shows a black screen [on hold]
24 septembre 2019, par LawlietI’ve been trying to use a video as a webcam for quite a while now. The command
gst-launch-1.0 filesrc location=newflag.webm ! decodebin ! videoconvert ! v4l2sink device=/dev/video0
Using this command, i’m able to watch the stream using VLC but Discord and Firefox display a black screen when using /dev/video0 as a webcam.
I got it working using ffmpeg to stream the video in yuv420p so I suspect videoconvert converts the stream to YUY2 which is I guess not supported by Discord nor Firefox.
Any idea on how to get this to work ?
-
ffmpeg overlay filter adds black background for PNG with transparency
30 janvier 2019, par Pavel S.I’m trying to programmatically add PNG overlay over h264 video.
Even though PNG image has alpha channel, after I apply filter, on a resulting video this image has black background instead of transparent one.
Here’s the filter :"[in][in2]overlay=15:15[out]"
I’m using openh264 to decode/encode video, so the pixel format of resulting video is YUV420P.
I’ve tried to explicitly define format in filter :[in][in2]overlay=15:15,format=rgba,format=yuv420p[out];
But no change.
ffmpeg : 3.4 ;
openh264 : Git (i.e. 1.9.0)Thanks in advance.